try to pass self name as default value during create parameter from usage (IDEA-123780)

This commit is contained in:
Anna Kozlova
2014-04-15 20:41:41 +02:00
parent 89dc56b6ca
commit af9135166d
3 changed files with 21 additions and 2 deletions

View File

@@ -0,0 +1,10 @@
// "Create Parameter 'popop'" "true"
class Calculator {
public void printError(int popop) {
int i = popop;
}
{
printError(popop);
}
}

View File

@@ -0,0 +1,10 @@
// "Create Parameter 'popop'" "true"
class Calculator {
public void printError() {
int i = <caret>popop;
}
{
printError();
}
}