fix tests in org.jetbrains.kotlin.checkers
This commit is contained in:
+10
-10
@@ -1,40 +1,40 @@
|
||||
package
|
||||
|
||||
internal fun test1(/*0*/ collection: MyCollection): kotlin.Unit
|
||||
internal fun MyAnotherCollectionInterface.iterator(): MyIterator
|
||||
internal fun MyCollectionInterface.iterator(): MyIterator
|
||||
public fun test1(/*0*/ collection: MyCollection): kotlin.Unit
|
||||
public fun MyAnotherCollectionInterface.iterator(): MyIterator
|
||||
public fun MyCollectionInterface.iterator(): MyIterator
|
||||
|
||||
internal interface MyAnotherCollectionInterface {
|
||||
public interface MyAnotherCollectionInterface {
|
||||
public open override /*1*/ /*fake_override*/ fun equals(/*0*/ other: kotlin.Any?): kotlin.Boolean
|
||||
public open override /*1*/ /*fake_override*/ fun hashCode(): kotlin.Int
|
||||
public open override /*1*/ /*fake_override*/ fun toString(): kotlin.String
|
||||
}
|
||||
|
||||
internal final class MyCollection : MyCollectionInterface, MyAnotherCollectionInterface {
|
||||
public final class MyCollection : MyCollectionInterface, MyAnotherCollectionInterface {
|
||||
public constructor MyCollection()
|
||||
public open override /*2*/ /*fake_override*/ fun equals(/*0*/ other: kotlin.Any?): kotlin.Boolean
|
||||
public open override /*2*/ /*fake_override*/ fun hashCode(): kotlin.Int
|
||||
public open override /*2*/ /*fake_override*/ fun toString(): kotlin.String
|
||||
}
|
||||
|
||||
internal interface MyCollectionInterface {
|
||||
public interface MyCollectionInterface {
|
||||
public open override /*1*/ /*fake_override*/ fun equals(/*0*/ other: kotlin.Any?): kotlin.Boolean
|
||||
public open override /*1*/ /*fake_override*/ fun hashCode(): kotlin.Int
|
||||
public open override /*1*/ /*fake_override*/ fun toString(): kotlin.String
|
||||
}
|
||||
|
||||
internal final class MyElement {
|
||||
public final class MyElement {
|
||||
public constructor MyElement()
|
||||
public open override /*1*/ /*fake_override*/ fun equals(/*0*/ other: kotlin.Any?): kotlin.Boolean
|
||||
public open override /*1*/ /*fake_override*/ fun hashCode(): kotlin.Int
|
||||
public open override /*1*/ /*fake_override*/ fun toString(): kotlin.String
|
||||
}
|
||||
|
||||
internal final class MyIterator {
|
||||
public final class MyIterator {
|
||||
public constructor MyIterator()
|
||||
public open override /*1*/ /*fake_override*/ fun equals(/*0*/ other: kotlin.Any?): kotlin.Boolean
|
||||
internal final fun hasNext(): kotlin.Boolean
|
||||
public final fun hasNext(): kotlin.Boolean
|
||||
public open override /*1*/ /*fake_override*/ fun hashCode(): kotlin.Int
|
||||
internal final fun next(): MyElement
|
||||
public final fun next(): MyElement
|
||||
public open override /*1*/ /*fake_override*/ fun toString(): kotlin.String
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user