blob: 68dcaa15e596962057fd628cdddbcc08962da2e2 [file] [log] [blame]
/*
TEST_OUTPUT:
---
fail_compilation/diag8825.d(13): Error: undefined identifier `foo`
---
*/
template t(alias a){
alias int t;
}
void main(){
t!(foo // line 13
) i; // line 19
return;
}