mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
8 lines
129 B
D
8 lines
129 B
D
// https://issues.dlang.org/show_bug.cgi?id=16213
|
|
|
|
enum Id(size_t i) = i;
|
|
void main()
|
|
{
|
|
int[5] y;
|
|
y[ Id!($) - 1 ] = 3;
|
|
}
|