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