fix tests in org.jetbrains.kotlin.checkers
This commit is contained in:
@@ -1,41 +1,41 @@
|
||||
package
|
||||
|
||||
internal val B.foo: Foo
|
||||
internal fun test(/*0*/ a: A): kotlin.Unit
|
||||
internal fun test(/*0*/ b: B): kotlin.Unit
|
||||
internal fun test(/*0*/ d: D, /*1*/ c: C): kotlin.Unit
|
||||
internal fun test(/*0*/ foo: Foo): kotlin.Unit
|
||||
internal fun </*0*/ T, /*1*/ R> with(/*0*/ receiver: T, /*1*/ f: T.() -> R): R
|
||||
internal fun Foo.invoke(): kotlin.Unit
|
||||
public val B.foo: Foo
|
||||
public fun test(/*0*/ a: A): kotlin.Unit
|
||||
public fun test(/*0*/ b: B): kotlin.Unit
|
||||
public fun test(/*0*/ d: D, /*1*/ c: C): kotlin.Unit
|
||||
public fun test(/*0*/ foo: Foo): kotlin.Unit
|
||||
public fun </*0*/ T, /*1*/ R> with(/*0*/ receiver: T, /*1*/ f: T.() -> R): R
|
||||
public fun Foo.invoke(): kotlin.Unit
|
||||
|
||||
internal interface A {
|
||||
internal abstract val foo: Foo
|
||||
public interface A {
|
||||
public abstract val foo: Foo
|
||||
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
|
||||
public open override /*1*/ /*fake_override*/ fun hashCode(): kotlin.Int
|
||||
public open override /*1*/ /*fake_override*/ fun toString(): kotlin.String
|
||||
}
|
||||
|
||||
internal interface C {
|
||||
public interface C {
|
||||
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 D {
|
||||
internal abstract val C.foo: Foo
|
||||
public interface D {
|
||||
public abstract val C.foo: Foo
|
||||
public open override /*1*/ /*fake_override*/ fun equals(/*0*/ other: kotlin.Any?): kotlin.Boolean
|
||||
public open override /*1*/ /*fake_override*/ fun hashCode(): kotlin.Int
|
||||
internal open fun test(/*0*/ c: C): kotlin.Unit
|
||||
public open fun test(/*0*/ c: C): kotlin.Unit
|
||||
public open override /*1*/ /*fake_override*/ fun toString(): kotlin.String
|
||||
}
|
||||
|
||||
internal final class Foo {
|
||||
public final class Foo {
|
||||
public constructor Foo()
|
||||
public open override /*1*/ /*fake_override*/ fun equals(/*0*/ other: kotlin.Any?): kotlin.Boolean
|
||||
public open override /*1*/ /*fake_override*/ fun hashCode(): kotlin.Int
|
||||
|
||||
Reference in New Issue
Block a user