blob: 08b0e4c44cf59dbd3a80963e57558b7a59fc4398 [file] [log] [blame]
class A {
fun foo() = 1
}
fun apply(x: (A) -> Int) = 2
fun test() {
apply<selection>{it.foo()}</selection>
}