Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
codegen
/
box
/
classes
/
initializerBlock.kt
blob: ccaac7f0473a5b62e2d239f460bb18c3eb279b34 [
file
]
class
C
()
{
public
var
f
:
Int
init
{
f
=
610
}
}
fun box
():
String
{
val c
=
C
()
if
(
c
.
f
!=
610
)
return
"fail"
return
"OK"
}