blob: 761a6a60dd7742da7e0b9d41ca2730804cd7d47d [file] [log] [blame]
/*
TEST_OUTPUT:
---
tuple(func)
---
*/
// https://issues.dlang.org/show_bug.cgi?id=21282
template I(T...) { alias I = T; }
template Bug(T...) {
alias Bug = mixin("I!(T[0])");
}
void func() {}
pragma(msg, Bug!func);