Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
aa5987fd3dbfa6d7896d481b336c9f49e48b9179
/
.
/
compiler
/
testData
/
loadJava
/
compiledKotlin
/
prop
/
OverrideClassVal.kt
blob: fbedaca4885c1db4779145a2f9fa3743088b4473 [
file
] [
log
] [
blame
]
//ALLOW_AST_ACCESS
package
test
open
class
BaseClass
()
{
open val shape
=
{
"square"
}()
}
open
class
Subclass
()
:
BaseClass
()
{
override
open val shape
=
{
"circle"
}()
}