mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-04-04 08:31:30 +00:00
Currently SamAdapterOverridabilityCondition can be called even for incompatible descriptors #KT-10486 Fixed
24 lines
952 B
Plaintext
Vendored
24 lines
952 B
Plaintext
Vendored
package test
|
|
|
|
public final class DifferentParametersCount {
|
|
public constructor DifferentParametersCount()
|
|
|
|
public open class A {
|
|
public constructor A()
|
|
|
|
// Static members
|
|
public final /*synthesized*/ fun foo(/*0*/ p0: (() -> kotlin.Unit)!, /*1*/ p1: kotlin.Int): kotlin.Unit
|
|
public open fun foo(/*0*/ p0: java.lang.Runnable!, /*1*/ p1: kotlin.Int): kotlin.Unit
|
|
}
|
|
|
|
public open class B : test.DifferentParametersCount.A {
|
|
public constructor B()
|
|
|
|
// Static members
|
|
public final /*synthesized*/ fun foo(/*0*/ p0: (() -> kotlin.Unit)!): kotlin.Unit
|
|
public final override /*1*/ /*fake_override*/ fun foo(/*0*/ p0: (() -> kotlin.Unit)!, /*1*/ p1: kotlin.Int): kotlin.Unit
|
|
public open fun foo(/*0*/ p0: java.lang.Runnable!): kotlin.Unit
|
|
public open override /*1*/ /*fake_override*/ fun foo(/*0*/ p0: java.lang.Runnable!, /*1*/ p1: kotlin.Int): kotlin.Unit
|
|
}
|
|
}
|