blob: 388c4603f04b22822ff6f2b417156ee96573a90a [file] [log] [blame]
// REQUIRED_ARGS: -c
/*
TEST_OUTPUT:
---
gigi
fail_compilation/fail19182.d(12): Error: `pragma(msg)` is missing a terminating `;`
---
*/
void foo()
{
pragma(msg, "gigi") // Here
static foreach (e; [])
{
pragma(msg, "lili");
}
}