Files
kotlin-fork/compiler/testData/diagnostics/tests/imports/ImportNestedWithDifferentName.txt
T
2016-01-19 19:30:19 +03:00

20 lines
776 B
Plaintext
Vendored

package
package a {
public interface A {
public abstract val a: a.A.Nested
public abstract val b: a.A.Nested
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
public final class Nested {
public constructor Nested()
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
}
}
}