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