ec64a7e422
So #KT-16394 Fixed
10 lines
167 B
Plaintext
Vendored
10 lines
167 B
Plaintext
Vendored
class Test {
|
|
fun bar() = 1
|
|
|
|
fun test(x: Int) {
|
|
val foo: () -> Int = if (x == 1)
|
|
this::bar
|
|
else
|
|
({ this.bar() })
|
|
}
|
|
} |