blob: 78563c92525a1e1a99fe82d138ab1acc1fcb6be8 [file] [log] [blame]
/*
TEST_OUTPUT:
---
fail_compilation/test16523.d(12): Error: `case` variables have to be `const` or `immutable`
---
*/
void test(int a, int b)
{
switch (a)
{
case b: return;
default: assert(0);
}
}