741e031ff1
Use formatter in converter tests Reformat test data
11 lines
139 B
Kotlin
11 lines
139 B
Kotlin
class Base() {
|
|
fun foo() {
|
|
}
|
|
}
|
|
class A() : Base() {
|
|
class C() {
|
|
fun test() {
|
|
this@A.foo()
|
|
}
|
|
}
|
|
} |