Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
b32f408767cf86efaa65eb02699fe00bd61d99a6
/
.
/
compiler
/
testData
/
codegen
/
box
/
controlStructures
/
kt2147.kt
blob: df664fb16ef2f58826beee168aea9a3aab6fae47 [
file
]
class
Foo
{
fun isOk
()
=
true
}
fun box
():
String
{
val foo
:
Foo
?
=
Foo
()
if
(
foo
?.
isOk
()!!)
return
"OK"
return
"fail"
}