Files
kotlin-fork/idea/testData/inspectionsLocal/redundantSamConstructor/resolutionAmbiguity3.1.java
T
Roman Golyshev 3122760c49 Add more tests for RedundantSamConstructorInspection
- All those tests already pass, they are needed to fix the behaviour of the inspection before the changes
2020-02-19 17:16:17 +03:00

17 lines
306 B
Java
Vendored

public interface Interfaces {
interface FunInterface1 {
void test();
}
interface FunInterface2 {
void test();
}
interface InterfaceWithMethod1 {
void foo(FunInterface1 f1);
}
interface InterfaceWithMethod2 {
void foo(FunInterface2 f1);
}
}