891a036b59
After this change SAM adapters are being resolved in the same group as members, thus their overload resolution happens simultaneously. But in the case of overload resolution ambiguity try to filter out all synthetic members and run the process again. See the issue and new test for clarification #KT-11128 In Progress
16 lines
679 B
Plaintext
Vendored
16 lines
679 B
Plaintext
Vendored
package
|
|
|
|
public fun fn(): kotlin.Unit
|
|
public fun x(/*0*/ a: A, /*1*/ r: java.lang.Runnable): kotlin.Unit
|
|
|
|
public open class A {
|
|
public constructor A()
|
|
public open fun bar(/*0*/ r: java.lang.Runnable!): kotlin.Int
|
|
public open fun bar(/*0*/ r: kotlin.CharSequence!): kotlin.String!
|
|
public open override /*1*/ /*fake_override*/ fun equals(/*0*/ other: kotlin.Any?): kotlin.Boolean
|
|
public open fun foo(/*0*/ r: java.lang.Runnable!): kotlin.Int
|
|
public open fun foo(/*0*/ r: kotlin.Any!): kotlin.String!
|
|
public open override /*1*/ /*fake_override*/ fun hashCode(): kotlin.Int
|
|
public open override /*1*/ /*fake_override*/ fun toString(): kotlin.String
|
|
}
|