fix delegation to abstract method (EA-29618 - NPE: DelegateWithDefaultParamValueIntentionAction.invoke)

This commit is contained in:
anna
2011-09-08 20:27:42 +02:00
parent 7ff91a3d92
commit 32e09dafb3
4 changed files with 21 additions and 3 deletions

View File

@@ -0,0 +1,8 @@
// "Generate delegated method with default parameter value" "true"
abstract class Test {
int foo(boolean... args) {
return foo(<caret>, args);
}
abstract int foo(int ii, boolean... args);
}

View File

@@ -0,0 +1,4 @@
// "Generate delegated method with default parameter value" "true"
abstract class Test {
abstract int foo(int i<caret>i, boolean... args);
}