blob: 9b98899c7e2d86df77c7b1a3b1bf5e5ca9a87a8f [file] [log] [blame]
//cannot rename to: j
package p;
class B{
int j;
}
class A extends B{
int m(){
int i=0;
j= 0;
return 0;
};
}