89981ecbbb
So #KT-23346 Fixed
11 lines
174 B
Plaintext
Vendored
11 lines
174 B
Plaintext
Vendored
fun test(i: Int) {
|
|
var fn: () -> String
|
|
|
|
<caret>fn = if (i == 1) {
|
|
{ "foo" }
|
|
} else if (i == 2) {
|
|
{ "bar" }
|
|
} else {
|
|
{ "baz" }
|
|
}
|
|
} |