Minor, delete Object from some test data

This commit is contained in:
Alexander Udalov
2014-07-25 16:44:31 +04:00
parent a5321ba9f0
commit 98ffdb3e32
7 changed files with 32 additions and 33 deletions
@@ -1,8 +1,8 @@
open abstract class B() : java.lang.Object() {
open abstract class B {
abstract fun foo2(arg: Int = 239) : Int
}
class C() : B() {
class C : B() {
override fun foo2(arg: Int) : Int = arg
}