mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-10 15:51:01 +00:00
Currently SamAdapterOverridabilityCondition can be called even for incompatible descriptors #KT-10486 Fixed
16 lines
350 B
Java
Vendored
16 lines
350 B
Java
Vendored
package test;
|
|
|
|
import kotlin.Unit;
|
|
import kotlin.jvm.functions.Function0;
|
|
|
|
public final class DifferentParametersCount {
|
|
public static class A {
|
|
static public void foo(Runnable x, int y) {}
|
|
}
|
|
|
|
public static class B extends A {
|
|
// SAM adapter should not override A.foo
|
|
static public void foo(Runnable x) {}
|
|
}
|
|
}
|