fix tests in org.jetbrains.kotlin.jvm.compiler
This commit is contained in:
+5
-5
@@ -1,16 +1,16 @@
|
||||
package test
|
||||
|
||||
internal interface A</*0*/ T> {
|
||||
internal abstract fun foo(): T
|
||||
public interface A</*0*/ T> {
|
||||
public abstract fun foo(): T
|
||||
}
|
||||
|
||||
internal open class B : test.A<kotlin.Int> {
|
||||
public open class B : test.A<kotlin.Int> {
|
||||
public constructor B()
|
||||
internal final fun foo(): kotlin.Int
|
||||
public final fun foo(): kotlin.Int
|
||||
}
|
||||
|
||||
public/*package*/ open class Test : test.B {
|
||||
public/*package*/ constructor Test()
|
||||
internal final /*fake_override*/ fun foo(): kotlin.Int
|
||||
public final /*fake_override*/ fun foo(): kotlin.Int
|
||||
public/*package*/ open fun test(): kotlin.Unit
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user