blob: 8fd0975399f48eb96db3ea2c7b9ed1a9261c196b [file] [log] [blame]
/*
TEST_OUTPUT:
---
fail_compilation/ice11553.d(22): Error: recursive template expansion while looking for A!().A()
---
*/
template A(alias T)
{
template A()
{
alias A = T!();
}
}
template B()
{
alias B = A!(.B);
}
static if (A!B) {}