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