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,23 +1,23 @@
package
package a {
internal fun doInt(/*0*/ i: kotlin.Int): kotlin.Int
internal fun test(/*0*/ a: a.A?): kotlin.Unit
internal fun test(/*0*/ u: a.A?, /*1*/ x: a.A?, /*2*/ y: a.A?, /*3*/ z: a.A?, /*4*/ w: a.A, /*5*/ v: a.A?): kotlin.Unit
internal fun a.B?.bar(): kotlin.Int
internal fun a.B?.baz(): kotlin.Int?
public fun doInt(/*0*/ i: kotlin.Int): kotlin.Int
public fun test(/*0*/ a: a.A?): kotlin.Unit
public fun test(/*0*/ u: a.A?, /*1*/ x: a.A?, /*2*/ y: a.A?, /*3*/ z: a.A?, /*4*/ w: a.A, /*5*/ v: a.A?): kotlin.Unit
public fun a.B?.bar(): kotlin.Int
public fun a.B?.baz(): kotlin.Int?
internal interface A {
internal abstract val b: a.B
internal abstract val nb: a.B?
public interface A {
public abstract val b: a.B
public abstract val nb: a.B?
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 interface B {
public interface B {
public open override /*1*/ /*fake_override*/ fun equals(/*0*/ other: kotlin.Any?): kotlin.Boolean
internal abstract fun foo(): kotlin.Int
public abstract fun foo(): kotlin.Int
public open override /*1*/ /*fake_override*/ fun hashCode(): kotlin.Int
public open override /*1*/ /*fake_override*/ fun toString(): kotlin.String
}