blob: 890c78067bcff988b5ed457954ff6b8c8efca6e4 [file] [log] [blame]
// "Create Field for Parameter 'p1'" "true"
class Test{
int myP1;
int myP2;
void f(int p<caret>1, int p2){
int myP2 = p1;
p1 = 0;
}
}