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