advHighlighting -> light test case

This commit is contained in:
Anna.Kozlova
2019-01-02 16:35:41 +01:00
parent 7c76bbbbb7
commit 2e7f05efd0
57 changed files with 201 additions and 278 deletions
@@ -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) {
}
}