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