blob: d8e0229b98490e8c2a1fcef85dcb7930695b4f28 [file] [log] [blame]
class A {
int newFieldName;
int method(int newFieldName) {
if(newFieldName == 0) {
return this.newFieldName;
}
else {
int newFieldName = this.newFieldName;
return this.newFieldName + newFieldName;
}
}
}