dmd/compiler/test/fail_compilation/ice9406.d

22 lines
241 B
D

/*
TEST_OUTPUT:
---
fail_compilation/ice9406.d(21): Error: `s1.mixin Mixin!() t1;` has no effect
---
*/
mixin template Mixin() { }
struct S
{
template t1()
{
mixin Mixin t1;
}
}
void main()
{
S s1;
s1.t1!();
}