mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-19 18:50:59 +07:00
12 lines
113 B
Java
12 lines
113 B
Java
// "Remove 'new'" "true"
|
|
|
|
class A<T> {
|
|
int x() {
|
|
return A.y();
|
|
}
|
|
|
|
static int y() {
|
|
return 1;
|
|
}
|
|
}
|