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