blob: 4f063b655e004c2a3d606ea0269135fdd167fc97 [file] [log] [blame]
// "Bind Method Parameters to Fields" "true"
class A{
private int myP1;
private int myP2;
void method(int p1, int p2){
myP1 = p1;
myP2 = p2;
}
}