Add more tests for RedundantSamConstructorInspection
- All those tests already pass, they are needed to fix the behaviour of the inspection before the changes
This commit is contained in:
committed by
Roman Golyshev
parent
e8524137c3
commit
3122760c49
+12
@@ -0,0 +1,12 @@
|
||||
public interface JavaTest {
|
||||
interface FunInterface1 {
|
||||
void test();
|
||||
}
|
||||
|
||||
interface FunInterface2 {
|
||||
int test();
|
||||
}
|
||||
|
||||
void foo(FunInterface1 f1);
|
||||
void foo(FunInterface2 f2);
|
||||
}
|
||||
Reference in New Issue
Block a user