Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ba045e44fbc13a4a8bcfa03689115fd0a25366a9
/
.
/
compiler
/
testData
/
codegen
/
box
/
properties
/
kt3556.kt
blob: adce0368131ddf81ed9e16550b0f3416b9a6d0f9 [
file
] [
log
] [
blame
]
class
Test
{
val a
:
String
=
"1"
private
val b
:
String
get
()
=
a
fun outer
()
:
Int
{
return
b
.
length
}
}
fun box
()
=
if
(
Test
().
outer
()
==
1
)
"OK"
else
"fail"