mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-10 13:17:09 +07:00
testdata fo IDEA-20573
This commit is contained in:
+26
@@ -0,0 +1,26 @@
|
||||
public class GoodCodeIsRed {
|
||||
|
||||
public void test() {
|
||||
FileIF file = new FileImpl();
|
||||
file.getInputStream();
|
||||
}
|
||||
}
|
||||
|
||||
class FileImpl implements FileIF {
|
||||
|
||||
public void getInputStream() {
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
interface FileIF extends BasicFileIF, DataSource {
|
||||
}
|
||||
|
||||
interface BasicFileIF {
|
||||
void getInputStream();
|
||||
}
|
||||
|
||||
|
||||
interface DataSource {
|
||||
void getInputStream() throws java.io.IOException;
|
||||
}
|
||||
Reference in New Issue
Block a user