Files
kotlin-fork/idea/testData/refactoring/pushDown/j2k/fromClassUsageConflicts.1.kt
T
2016-09-27 21:26:31 +03:00

10 lines
121 B
Kotlin
Vendored

class K : A()
fun test(a: A) {
val t1 = a.x
a.x = t1 + 1
val t2 = A.X
a.foo(1)
A.foo2(2)
A.Y()
}