// Test nested type as template parameter. // Expected result: PASS class N3 { static class N3b { } public static void main(String[] args) { System.out.println(new N3a()); } } template class N3a { { System.out.println(new x()); } }