mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
12 lines
175 B
D
12 lines
175 B
D
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/fail22634.d(9): Error: more than 65535 symbols with name `i` generated
|
|
---
|
|
*/
|
|
void main()
|
|
{
|
|
static foreach(i; 0..65537)
|
|
{
|
|
}
|
|
}
|