mirror of
https://github.com/github/codeql.git
synced 2025-12-18 18:10:39 +01:00
13 lines
301 B
Java
13 lines
301 B
Java
public class User {
|
|
|
|
public static void test(Lib<CharSequence> invarLib, Lib<? extends CharSequence> extendsLib, Lib<? super CharSequence> superLib, Lib<?> unboundLib) {
|
|
|
|
invarLib.takesVar(null);
|
|
extendsLib.takesVar(null);
|
|
superLib.takesVar(null);
|
|
unboundLib.takesVar(null);
|
|
|
|
}
|
|
|
|
}
|