Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6f1b95d296c5592d3a3e71cc638994fa2ba4e4f7
/
.
/
compiler
/
testData
/
codegen
/
box
/
extensionProperties
/
inClassWithGetter.kt
blob: e14ca8e686f5dae3fc65700d61c52dd8611b0e0f [
file
]
class
Test
{
val
Int
.
foo
:
String
get
()
{
return
"OK"
}
fun test
():
String
{
return
1.foo
}
}
fun box
():
String
{
return
Test
().
test
()
}