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