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