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