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