blob: d389b36b2256e00213e8496da898d316cbb4d495 [file] [log] [blame]
// "Create Field for Parameter 'p1'" "true"
class Test{
int p1;
int myP2;
private final int p1
Test(int p1, int p2){
this.p1 = p1
myP2 = p2;
}
}