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

11 lines
100 B
Plaintext
Vendored

package test
fun foo(n: Int) {
}
class A(val n: Int) {
fun test() {
foo(this)
}
}