mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
11 lines
190 B
D
11 lines
190 B
D
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/ice5996.d(8): Error: undefined identifier `anyOldGarbage`
|
|
---
|
|
*/
|
|
auto bug5996() {
|
|
if (anyOldGarbage) {}
|
|
return 2;
|
|
}
|
|
enum uint h5996 = bug5996();
|