Fix incorrect test data

This commit is contained in:
Alexander Udalov
2014-07-19 02:08:24 +04:00
parent 93fdf3a254
commit abf46d593c
2 changed files with 2 additions and 2 deletions
@@ -8,7 +8,7 @@ trait Z {
fun <caret>foo()
}
class B: A, Z {
class B: A(), Z {
override fun foo() {
}
@@ -7,7 +7,7 @@ open class A {
trait Z {
}
class B: A, Z {
class B: A(), Z {
override fun foo() {
}