Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0c8f3faeecbeecb0d1430ef2b86dd192a029711c
/
.
/
compiler
/
testData
/
codegen
/
box
/
classes
/
kt2384.kt
blob: d990d4cbc002e0b34fb7250279f81ce5445e86bd [
file
]
class
A
{
companion
object
{
val b
=
0
val c
=
b
init
{
val d
=
b
}
}
}
fun box
():
String
{
A
()
return
if
(
A
.
c
==
A
.
b
)
"OK"
else
"Fail"
}