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