mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-28 17:29:55 +07:00
delegate default param values: don't mark static method in the interface with default modifier (IDEA-148489)
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
// "Generate overloaded method with default parameter value" "true"
|
||||
interface Test {
|
||||
static void foo() {
|
||||
foo();
|
||||
}
|
||||
|
||||
static void foo(int ii) {}
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
// "Generate overloaded method with default parameter value" "true"
|
||||
interface Test {
|
||||
static void foo(int i<caret>i) {}
|
||||
}
|
||||
Reference in New Issue
Block a user