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