3c859caf2b
Move j2k/test/tests -> j2k/tests, j2k/test/testData -> j2k/testData
14 lines
158 B
Kotlin
Vendored
14 lines
158 B
Kotlin
Vendored
package a.b
|
|
|
|
open class Base {
|
|
fun foo() {
|
|
}
|
|
}
|
|
|
|
class A : Base() {
|
|
inner class C {
|
|
fun test() {
|
|
this@A.foo()
|
|
}
|
|
}
|
|
} |