blob: b5ba6c5e9a782f2fdb0770dd2202c2819776939b [file] [log] [blame]
package test0159;
import java.util.*;
public class Test {
Test(int i){
}
void n(){
final int y= 0;
new Test(y){
void f(){
int y= 9;
}
};
}
}