MATCH: Improve `A CMP 0 ? A : -A` set of patterns to use bitwise_equal_p.
[official-gcc.git] / gcc / testsuite / gdc.test / fail_compilation / ice11404.d
blobf445903179ff15bdbc9dd7b6be5fad6d6fabe64d
1 /*
2 TEST_OUTPUT:
3 ---
4 fail_compilation/ice11404.d(10): Error: cannot have associative array of `(int, int)`
5 ---
6 */
7 template TypeTuple(TL...) { alias TL TypeTuple; }
8 void main()
10 TypeTuple!(int, int)[string] my_map;