Sign in
gnu
/
gcc
/
refs/tags/basepoints/gcc-13
/
.
/
gcc
/
testsuite
/
gdc.test
/
fail_compilation
/
test16523.d
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
);
}
}