blob: 320d1eb07f434e31aad214c5bc671a22b6365600 [file] [log] [blame]
/*
TEST_OUTPUT:
---
fail_compilation/fail22634.d(9): Error: more than 65535 symbols with name `i` generated
---
*/
void main()
{
static foreach(i; 0..65537)
{
}
}