create field from parameter: array types (IDEA-58140)

This commit is contained in:
anna
2010-08-30 21:13:02 +04:00
parent 6e706cfc31
commit 3942c3f88d
3 changed files with 18 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
// "Create Field For Parameter 'p1'" "true"
class Test{
private final String[] myP1;
void f(String[] p1){
myP1 = p1;
}
}

View File

@@ -0,0 +1,7 @@
// "Create Field For Parameter 'p1'" "true"
class Test{
void f(String[] p<caret>1){
}
}