956c6eeec7
#KT-9485 Fixed
10 lines
121 B
Kotlin
Vendored
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()
|
|
} |