mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-23 07:50:55 +07:00
9 lines
229 B
Java
9 lines
229 B
Java
// "Generate overloaded method with default parameter values" "true"
|
|
class Test {
|
|
void method(int x, int y) {}
|
|
|
|
static class SubTest extends Test {
|
|
@Override
|
|
void meth<caret>od(int x, int y) {}
|
|
}
|
|
} |