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