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