MATCH: Improve `A CMP 0 ? A : -A` set of patterns to use bitwise_equal_p.
[official-gcc.git] / gcc / testsuite / gdc.test / fail_compilation / fail270.d
blob188fab87ac05b077cbdd111c31b5d07e27f30a0e
1 /*
2 TEST_OUTPUT:
3 ---
4 fail_compilation/fail270.d(12): Error: string slice `[1 .. 0]` is out of bounds
5 fail_compilation/fail270.d(12): Error: mixin `fail270.Tuple!int.Tuple.Tuple!()` error instantiating
6 fail_compilation/fail270.d(14): Error: mixin `fail270.Tuple!int` error instantiating
7 ---
8 */
10 struct Tuple(TList...)
12 mixin .Tuple!((TList[1 .. $])) tail;
14 mixin Tuple!(int);