blob: d7b4a36ffc8f1935ef4aa8a900a793cd143b2fe9 [file] [log] [blame]
/*
TEST_OUTPUT:
---
fail_compilation/fail134.d(13): Error: template instance foo!(f) does not match template declaration foo(T)
fail_compilation/fail134.d(14): Error: template instance fail134.bar!(f) error instantiating
---
*/
// Issue 651 - Assertion failure: 'global.errors' on line 2622 in file 'template.c'
void f() {}
template foo(T) {}
template bar(T...) { alias foo!(T) buz; }
alias bar!(f) a;