mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-22 14:50:53 +07:00
8 lines
174 B
Java
8 lines
174 B
Java
// "Generate overloaded constructor with default parameter values" "true"
|
|
class Test {
|
|
Test() {
|
|
this(<selection>0<caret></selection>);
|
|
}
|
|
|
|
Test(int ii){}
|
|
} |