blob: eddb5d2ef8387f0404c99f405b7df4582f08ac6f [file] [log] [blame]
/*
TEST_OUTPUT:
---
fail_compilation/diag6539.d(21): Error: overloadset diag6539.Rectangle is used as a type
---
*/
mixin template foo()
{
struct Rectangle(T) {}
}
mixin template bar()
{
bool Rectangle(bool, int, int, int, int) {}
}
mixin foo;
mixin bar;
void test(Rectangle rect)
{
}