blob: e039de29b55c1e7c59d1b6bfcad4f27671fdf2ec [file] [log] [blame]
package test0311;
public class Test {
void m(){
final int j= 0;
Test a= new Test(){
void m(int j){
int u= j;
}
};
}
}