1 /* 2 TEST_OUTPUT: 3 --- 4 fail_compilation/diag8825.d(13): Error: undefined identifier `foo` 5 --- 6 */ 7 8 template t(alias a){ foo()9 alias int t; main()10 } 11 12 void main(){ 13 t!(foo // line 13 14 15 16 17 18 19 ) i; // line 19 20 return; 21 } 22