blob: 2bebed4dcc7708934952f7a7660ce434f5856d71 [file] [log] [blame]
class Bar {
}
class Foo() {
fun Bar.invoke(): Int = 1
}
fun main(args: Array<String>) {
val f = Foo()
println(<selection>Bar().f()</selection>)
println(Bar().f())
}