d: Merge upstream dmd, druntime 4c18eed967, phobos d945686a4.
[official-gcc.git] / gcc / testsuite / gdc.test / fail_compilation / ice12838.d
blobc1edd4f9c7c6f541367ffbf942f59f5571159cdf
1 /*
2 TEST_OUTPUT:
3 ---
4 fail_compilation/ice12838.d(27): Error: cannot implicitly convert expression `1` of type `int` to `string`
5 ---
6 */
8 struct Tuple(T...)
10 T field;
11 alias field this;
14 struct Data
16 string a;
19 template toTuple(T)
21 mixin(`alias toTuple = Tuple!(string);`);
24 void main()
26 toTuple!Data a;
27 a[0] = 1; // ICE!