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