blob: 50ea90c1f4dd1ab30cbcca8bd5455ab1d564f27d [file] [log] [blame]
class Test {
fun bar() = 1
fun test(x: Int) {
val foo: () -> Int = if (x == 1)
this::bar
else
<caret>this::bar
}
}