mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 03:13:40 +07:00
middle-matching-agnostic tests
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
enum Setup {
|
||||
NO_CONNECTION,
|
||||
NONE,
|
||||
CONNECTION
|
||||
}
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
enum Setup {
|
||||
NO_CONNECTION,
|
||||
NONE,
|
||||
CONNECTION
|
||||
}
|
||||
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
interface Intf { Intf FOO = null; }
|
||||
interface Intf2 extends Intf { Intf2 FOO = null; }
|
||||
interface Intf { Intf XFOO = null; }
|
||||
interface Intf2 extends Intf { Intf2 XFOO = null; }
|
||||
|
||||
public class Bar implements Intf2 {
|
||||
public static void fpp() {
|
||||
F<caret>
|
||||
XF<caret>x
|
||||
}
|
||||
}
|
||||
|
||||
+4
-4
@@ -1,12 +1,12 @@
|
||||
import static Super.FOO;
|
||||
import static Super.XFOO;
|
||||
|
||||
class Super {
|
||||
public static final Super FOO = null;
|
||||
public static final Super FOX = true;
|
||||
public static final Super XFOO = null;
|
||||
public static final Super XFOX = true;
|
||||
}
|
||||
|
||||
class Intermediate {
|
||||
Super s = FO<caret>
|
||||
Super s = XFO<caret>
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user