delegate default param values: don't mark static method in the interface with default modifier (IDEA-148489)

This commit is contained in:
Anna Kozlova
2015-11-26 17:25:53 +01:00
parent a70b23eefd
commit b611e2abee
3 changed files with 14 additions and 1 deletions

View File

@@ -0,0 +1,8 @@
// "Generate overloaded method with default parameter value" "true"
interface Test {
static void foo() {
foo();
}
static void foo(int ii) {}
}

View File

@@ -0,0 +1,4 @@
// "Generate overloaded method with default parameter value" "true"
interface Test {
static void foo(int i<caret>i) {}
}