Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0c8f3faeecbeecb0d1430ef2b86dd192a029711c
/
.
/
compiler
/
testData
/
codegen
/
box
/
extensionProperties
/
inClass.kt
blob: 7f1d8387e59ab9ffe55130318ee910f0dd97204e [
file
]
class
Test
{
val
Int
.
foo
:
String
get
()
=
"OK"
fun test
():
String
{
return
1.foo
}
}
fun box
():
String
{
return
Test
().
test
()
}