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