blob: a0f8c0dfce4d1e81298a52063e9758a2028230b3 [file] [log] [blame]
package test0264;
import java.util.*;
public class Test {
void m(final int i){
Test a= new Test(){
void m(int k){
k= i;
}
};
}
}