mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
22 lines
241 B
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!();
|
|
}
|