blob: 5c77b102be52317af9819ab43aed292b3ccc4675 [file] [log] [blame]
// "Create Field for Parameter 'p1'" "true"
class Test{
int p1;
int myP2;
void f(int p1, int p2){
this.p1 = p1;
int myP2 = p1;
p1 = 0;
}
}