Introduce fictitious numbered Function class descriptors
This commit is contained in:
+1
-1
@@ -2,7 +2,7 @@ package test;
|
||||
|
||||
public interface AdapterDoesntOverrideDeclaration {
|
||||
public interface Super {
|
||||
void foo(kotlin.Function0<kotlin.Unit> r);
|
||||
void foo(kotlin.jvm.functions.Function0<kotlin.Unit> r);
|
||||
}
|
||||
|
||||
public interface Sub extends Super {
|
||||
|
||||
+1
-1
@@ -3,7 +3,7 @@ package test;
|
||||
public interface InheritedAdapterAndDeclaration {
|
||||
public interface Super {
|
||||
void foo(Runnable r);
|
||||
void foo(kotlin.Function0<kotlin.Unit> r);
|
||||
void foo(kotlin.jvm.functions.Function0<kotlin.Unit> r);
|
||||
}
|
||||
|
||||
public interface Sub extends Super {
|
||||
|
||||
+1
-1
@@ -7,7 +7,7 @@ public interface InheritedOverriddenAdapter {
|
||||
}
|
||||
|
||||
public class Sub extends Super {
|
||||
public void foo(kotlin.Function0<kotlin.Unit> r) {
|
||||
public void foo(kotlin.jvm.functions.Function0<kotlin.Unit> r) {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -9,6 +9,6 @@ public interface OverriddenAmbiguousAdapters {
|
||||
}
|
||||
|
||||
public interface Sub extends Super {
|
||||
void foo(kotlin.Function0<kotlin.Unit> r);
|
||||
void foo(kotlin.jvm.functions.Function0<kotlin.Unit> r);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user