// Test template extending instantiation of itself. // Expected result: FAIL class t5 { public static void main(String[] args) { new t5a<0>(); } } template class t5a extends t5b> { } template class t5b { }