blob: 48901a1b4e40c039d15db56aecb6e99b8673f54a [file] [log] [blame]
/*
TEST_OUTPUT:
---
fail_compilation/fail10.d(18): Error: mixin `Foo!y` cannot resolve forward reference
---
*/
template Foo(alias b)
{
int a()
{
return b;
}
}
void test()
{
mixin Foo!(y) y;
}