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