Fixed broken testdata.
This commit is contained in:
@@ -15,13 +15,13 @@ class C : A(), B {
|
||||
override fun internalFun() {
|
||||
super<A>.internalFun()
|
||||
}
|
||||
override val internalProperty : Int = 0
|
||||
override val internalProperty: Int = 0
|
||||
protected override fun protectedFun() {
|
||||
super<A>.protectedFun()
|
||||
}
|
||||
protected override val protectedProperty : Int = 0
|
||||
protected override val protectedProperty: Int = 0
|
||||
public override fun publicFun() {
|
||||
super<A>.publicFun()
|
||||
}
|
||||
public override val publicProperty : Int = 0
|
||||
public override val publicProperty: Int = 0
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user