11 lines
146 B
Plaintext
Vendored
11 lines
146 B
Plaintext
Vendored
// WITH_RUNTIME
|
|
fun maybeFoo(): String? {
|
|
return "foo"
|
|
}
|
|
|
|
fun test(): String? {
|
|
var foo = maybeFoo()
|
|
val bar = foo!!
|
|
return foo
|
|
}
|