blob: 7730fcb2c70e4ed6c0da6913a924effbd996f6f6 [file] [log] [blame]
package test0545;
public class Second {
private static class Test {
Test(int i) {
}
}
Second() {
final Test t = new Test(0);
}
}