Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6f1fbe2c8085532ef2fa66bf26fdf2b04c5cca97
/
.
/
compiler
/
testData
/
codegen
/
box
/
object
/
globalInitializer.kt
blob: 18239e4b0a44df999b1c33d7d61d2976f5ebf742 [
file
]
// Does not fail with TR.
public
val z
:
Any
=
Z
private
object
Z
fun box
():
String
{
if
(
z
is
Z
)
return
"OK"
else
return
"FAIL"
}