blob: c3f1ce608bcba715af7548902ad4eb16cb3cbe46 [file] [log] [blame]
/*
TEST_OUTPUT:
---
fail_compilation/ice11404.d(10): Error: can't have associative array of (int, int)
---
*/
template TypeTuple(TL...) { alias TL TypeTuple; }
void main()
{
TypeTuple!(int, int)[string] my_map;
}