mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
11 lines
144 B
Java
11 lines
144 B
Java
class Test {
|
|
static class Super<T> {
|
|
public void test() {}
|
|
}
|
|
class Sub<T> extends Super<T> {
|
|
public void test2() {
|
|
test();
|
|
}
|
|
}
|
|
}
|