fix tests in org.jetbrains.kotlin.checkers

This commit is contained in:
Michael Nedzelsky
2015-09-03 15:25:57 +03:00
parent a3f22939f1
commit bc5c9065d2
2821 changed files with 12932 additions and 12960 deletions
@@ -1,16 +1,16 @@
package test
internal final class B : test.X, test.Y {
public final class B : test.X, test.Y {
/*primary*/ public constructor B(/*0*/ a: test.X)
internal final val a: test.X
internal final fun <get-a>(): test.X
internal open override /*2*/ fun foo(): kotlin.Unit
public final val a: test.X
public final fun <get-a>(): test.X
public open override /*2*/ fun foo(): kotlin.Unit
}
internal interface X {
internal abstract fun foo(): kotlin.Unit
public interface X {
public abstract fun foo(): kotlin.Unit
}
internal interface Y : test.X {
internal abstract override /*1*/ /*fake_override*/ fun foo(): kotlin.Unit
public interface Y : test.X {
public abstract override /*1*/ /*fake_override*/ fun foo(): kotlin.Unit
}