d: Merge upstream dmd, druntime 4c18eed967, phobos d945686a4.
[official-gcc.git] / gcc / testsuite / gdc.test / fail_compilation / fail222.d
blobe196b253065b47b590b7cb0fa3649054af163cda
1 /*
2 TEST_OUTPUT:
3 ---
4 fail_compilation/fail222.d(11): Error: template `fail222.getMixin(TArg..., int i = 0)()` template sequence parameter must be the last one
5 fail_compilation/fail222.d(18): Error: template instance `getMixin!()` does not match template declaration `getMixin(TArg..., int i = 0)()`
6 fail_compilation/fail222.d(21): Error: template instance `fail222.Thing!()` error instantiating
7 fail_compilation/fail222.d(23): Error: template `fail222.fooBar(A..., B...)()` template sequence parameter must be the last one
8 ---
9 */
11 string getMixin(TArg..., int i = 0)()
13 return ``;
16 class Thing(TArg...)
18 mixin(getMixin!(TArg)());
21 public Thing!() stuff;
23 void fooBar (A..., B...)() {}