dmd/compiler/test/fail_compilation/fail251.d
2022-07-09 18:53:07 +02:00

16 lines
316 B
D

/*
TEST_OUTPUT:
---
fail_compilation/fail251.d(12): Error: undefined identifier `xs`
fail_compilation/fail251.d(16): called from here: `foo()`
fail_compilation/fail251.d(16): while evaluating: `static assert(foo())`
---
*/
bool foo()
{
foreach (x; xs) {}
return true;
}
static assert(foo());