Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
b32f408767cf86efaa65eb02699fe00bd61d99a6
/
.
/
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"
}()
}