cd44bc3fb0
#KT-5319 Fixed
12 lines
182 B
Kotlin
12 lines
182 B
Kotlin
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())
|
|
} |