Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ebcc2cc3b207156c1c0e90e5107aa356b8fa8d72
/
.
/
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"
}