mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-28 15:20:54 +07:00
- fix for completion - fix for error highlighting GitOrigin-RevId: 337131aab1bc7473711ffc078175b5adba34f30d
25 lines
319 B
Java
25 lines
319 B
Java
public class Main {
|
|
|
|
sealed interface I {
|
|
final class C1 implements I {
|
|
}
|
|
|
|
static void test() {
|
|
final class TT implements I {
|
|
|
|
}
|
|
|
|
I i2 = new I() {
|
|
};
|
|
|
|
I i = getI();
|
|
switch (i) {
|
|
<caret>
|
|
}
|
|
}
|
|
|
|
private static I getI() {
|
|
return null;
|
|
}
|
|
}
|
|
} |