Files
kotlin-fork/idea/testData/shortenRefs/this/visitorConflict.kt
T
2015-02-11 14:40:22 +03:00

11 lines
130 B
Kotlin
Vendored

package test
fun foo(n: Int) {
}
class A(val n: Int) {
fun test() {
<selection>test.foo(this@A)</selection>
}
}