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

15 lines
219 B
D

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