mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
13 lines
243 B
D
13 lines
243 B
D
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/ice12850.d(12): Error: cannot implicitly convert expression `0` of type `int` to `string`
|
|
---
|
|
*/
|
|
alias TypeTuple(TL...) = TL;
|
|
|
|
void main()
|
|
{
|
|
int[string] arr;
|
|
alias staticZip = TypeTuple!(arr[0]);
|
|
}
|