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