3122760c49
- All those tests already pass, they are needed to fix the behaviour of the inspection before the changes
13 lines
209 B
Java
Vendored
13 lines
209 B
Java
Vendored
public interface JavaTest {
|
|
interface FunInterface1 {
|
|
void test();
|
|
}
|
|
|
|
interface FunInterface2 {
|
|
int test();
|
|
}
|
|
|
|
void foo(FunInterface1 f1);
|
|
void foo(FunInterface2 f2);
|
|
}
|