1 package test0545;
2 
3 public class Second {
4 	private static class Test {
Test(int i)5 		Test(int i) {
6 		}
7 	}
Second()8 	Second() {
9 		final Test t = new Test(0);
10 	}
11 }