mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
16 lines
241 B
D
16 lines
241 B
D
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/ice12539.d(15): Error: sequence index `[0]` is outside bounds `[0 .. 0]`
|
|
---
|
|
*/
|
|
|
|
alias TypeTuple(E...) = E;
|
|
|
|
void main ()
|
|
{
|
|
int[string] map;
|
|
|
|
alias Foo = TypeTuple!();
|
|
auto a = map[Foo[0]];
|
|
}
|