mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
advHighlighting -> light test case
This commit is contained in:
+19
@@ -0,0 +1,19 @@
|
||||
package pck;
|
||||
|
||||
class A {
|
||||
<T> void foo(T x) {
|
||||
foo(1);
|
||||
|
||||
long x1 = 1L;
|
||||
foo(x1);
|
||||
|
||||
Long x2 = 1L;
|
||||
foo(x2);
|
||||
|
||||
Integer x3 = 1;
|
||||
foo(x3);
|
||||
}
|
||||
|
||||
void foo(long x) {
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user