Rename: Update test data (follow-up for unnecessary reformatting fix)

This commit is contained in:
Alexey Sedunov
2018-02-01 19:59:28 +03:00
parent d51da8bafd
commit 049439ce1d
4 changed files with 4 additions and 4 deletions
@@ -8,7 +8,7 @@ interface X {
}
class B : A(), X {
override fun foo(arg: Int) : Int {
override fun foo(arg : Int) : Int {
val x = arg + arg
return arg
}
@@ -4,7 +4,7 @@ abstract class A {
}
class B : A() {
override fun foo(arg: Int) : Int {
override fun foo(arg : Int) : Int {
var x = arg + arg
return arg
}
@@ -1,2 +1,2 @@
open class Bar(val foo: Boolean)
open class Bar (val foo: Boolean)
class E : Bar(false)
@@ -4,7 +4,7 @@ enum class E {
A;
companion object {
public const val A: Int = 1
public const val A : Int = 1
}
}