Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/deleteRepeatedInterface/beforeMiddle.java

7 lines
116 B
Java

// "Delete repeated 'I'" "true"
interface I {}
class Test {
{
Object o = (I & <caret>I & Runnable) null;
}
}