Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
f7ff397a310cd4d47fc4849043f8c9d47412e512
/
.
/
compiler
/
testData
/
codegen
/
box
/
lazyCodegen
/
safeAssign.kt
blob: a5aab7d9f46ffb1a3a671dba141996cc94c38692 [
file
]
// IGNORE_BACKEND_FIR: JVM_IR
class
Shape
(
var
result
:
String
)
{
}
fun box
():
String
{
var
a
:
Shape
?
=
Shape
(
"fail"
);
a
?.
result
=
"OK"
;
return
a
!!.
result
}