Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
4783822fbc6124c4ba34c64fc79b53dde6b500f7
/
.
/
compiler
/
testData
/
loadJava
/
compiledKotlin
/
prop
/
OverrideTraitVal.kt
blob: 378f43509a5d9f7a6024993d3be98c8aac554744 [
file
]
//ALLOW_AST_ACCESS
package
test
interface
Trait
{
val shape
:
String
}
open
class
Subclass
()
:
Trait
{
override
open val shape
=
{
"circle"
}()
}