Fixed test data

This commit is contained in:
Valentin Kipyatkov
2015-10-14 13:43:50 +03:00
parent f67bd8c13f
commit dc83d5cf04
@@ -1,5 +1,5 @@
open class A(n: Int)
class B {
constructor(x: Int) : <selection>A</selection>(x + 1)
class B : A {
constructor(x: Int) : <selection>super</selection>(x + 1)
}