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