Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
b32f408767cf86efaa65eb02699fe00bd61d99a6
/
.
/
compiler
/
testData
/
codegen
/
box
/
jvm8
/
simpleProperty.kt
blob: dfe8afa88fb03952509955f7d6430887b2f406d2 [
file
]
// TARGET_BACKEND: JVM
// JVM_TARGET: 1.8
interface
Z
{
val z
:
String
get
()
=
"OK"
}
class
Test
:
Z
fun box
()
:
String
{
return
Test
().
z
}