Sign in
gnu
/
gcc
/
refs/tags/basepoints/gcc-13
/
.
/
gcc
/
testsuite
/
gdc.test
/
fail_compilation
/
diag10926.d
blob: f98a5b27dea71d821352ee74c516d6d46ec38332 [
file
] [
log
] [
blame
]
/*
TEST_OUTPUT:
---
fail_compilation/diag10926.d(11): Error: `cast(const(int)[])c` is not an lvalue and cannot be modified
---
*/
void
main
()
{
const
(
int
)[]
a
,
b
;
int
[]
c
,
d
;
(
true
?
a
:
c
)
~=
20
;
// line 6, Error: a is not an lvalue
}