blob: ab077808f58e7230b15b84effd59215dc0bb7f07 [file] [log] [blame]
class A {
fun test() = 1
}
fun main(args: Array<String>) {
val a = A()
<selection>a.test()</selection>
val b = a.test()
}