mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-01 02:38:59 +07:00
try to pass self name as default value during create parameter from usage (IDEA-123780)
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
// "Create Parameter 'popop'" "true"
|
||||
class Calculator {
|
||||
public void printError(int popop) {
|
||||
int i = popop;
|
||||
}
|
||||
|
||||
{
|
||||
printError(popop);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
// "Create Parameter 'popop'" "true"
|
||||
class Calculator {
|
||||
public void printError() {
|
||||
int i = <caret>popop;
|
||||
}
|
||||
|
||||
{
|
||||
printError();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user