Files
2022-06-08 11:14:32 +00:00

12 lines
113 B
Java

// "Remove 'new'" "true"
class A<T> {
int x() {
return A.y();
}
static int y() {
return 1;
}
}