1 // Issue 2920 - recursive templates blow compiler stack
2 // template_17_A.
3 
t(int i)4 template t(int i)
5 {
6     const int x = t!(i + 1).x;
7 }
8 
main()9 void main()
10 {
11     int i = t!(0).x;
12 }
13