/*
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);
    }
}
/*
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);
    }
}