mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
12 lines
231 B
Java
12 lines
231 B
Java
package main;
|
|
|
|
public class A<T> {
|
|
public void fn() {
|
|
A<String> a0 = new A<String>();
|
|
A<Integer> a1 = new A<Integer>();
|
|
|
|
B<String> b0 = new B<String>();
|
|
B<Integer> b1 = new B<Integer>();
|
|
}
|
|
}
|