Converter:
Use formatter in converter tests Reformat test data
This commit is contained in:
@@ -1,11 +1,11 @@
|
||||
class Base() {
|
||||
fun foo() {
|
||||
}
|
||||
fun foo() {
|
||||
}
|
||||
}
|
||||
class A() : Base() {
|
||||
class C() {
|
||||
fun test() {
|
||||
this@A.foo()
|
||||
}
|
||||
}
|
||||
class C() {
|
||||
fun test() {
|
||||
this@A.foo()
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,11 +1,11 @@
|
||||
open class Base() {
|
||||
open fun foo() {
|
||||
}
|
||||
open fun foo() {
|
||||
}
|
||||
}
|
||||
open class A() : Base() {
|
||||
open class C() {
|
||||
open fun test() {
|
||||
this@A.foo()
|
||||
}
|
||||
}
|
||||
open class C() {
|
||||
open fun test() {
|
||||
this@A.foo()
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user