Files
2014-12-06 12:06:31 +03:00

13 lines
167 B
Java

// "Create field for parameter 'p1'" "false"
class Test{
int myP1;
int myP2;
void f(int p<caret>1, int p2){
myP2 = p1;
p1 = 0;
}
}