afb15eb7cf
#KT-38677 Fixed
13 lines
182 B
Plaintext
Vendored
13 lines
182 B
Plaintext
Vendored
fun test(i: Int) {
|
|
var fn: () -> String
|
|
|
|
<caret>fn = if (i == 1) {
|
|
{ "foo" }
|
|
}
|
|
else if (i == 2) {
|
|
{ "bar" }
|
|
}
|
|
else {
|
|
{ "baz" }
|
|
}
|
|
} |