e17610f378
When recursion is detected while computing `ClassResolutionScopesSupport.scopeForMemberDeclarationResolution`, create 'ThrowingLexicalScope' (as with other scopes), instead of throwing ISE immediately. That allows to report error properly in cases like in KT-18514 #KT-18514 Fixed
49 lines
1.6 KiB
Plaintext
Vendored
49 lines
1.6 KiB
Plaintext
Vendored
package
|
|
|
|
public object A {
|
|
private constructor A()
|
|
|
|
public interface I {
|
|
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 object D {
|
|
private constructor D()
|
|
|
|
public open class NestedD {
|
|
public constructor NestedD()
|
|
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 open class E {
|
|
public constructor E()
|
|
}
|
|
|
|
public object G {
|
|
private constructor G()
|
|
|
|
public open class NestedG {
|
|
public constructor NestedG()
|
|
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 object H {
|
|
private constructor H()
|
|
|
|
public open class NestedH {
|
|
public constructor NestedH()
|
|
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
|
|
}
|
|
}
|