advHighlighting -> light test case

This commit is contained in:
Anna.Kozlova
2019-01-02 13:33:30 +01:00
parent 7c76bbbbb7
commit 2e7f05efd0
57 changed files with 201 additions and 278 deletions

View File

@@ -0,0 +1,21 @@
package pck;
import java.util.List;
import static pck.C.foo;
import static pck.D.foo;
class C {
static <T> void foo(List<T> x) { }
}
class D {
static <T> String foo(List<T[]> x) { return null; }
}
class Main {
public static void main(String[] args){
List<String[]> x = null;
foo(x).toLowerCase();
}
}