Sign in
gnu
/
gcc
/
refs/tags/basepoints/gcc-13
/
.
/
gcc
/
testsuite
/
gdc.test
/
fail_compilation
/
diag8178.d
blob: 00cac985b13c6facf71908c7a15f17a88fafec67 [
file
] [
log
] [
blame
]
/*
TEST_OUTPUT:
---
fail_compilation/diag8178.d(14): Error: cannot modify manifest constant `s`
---
*/
struct
Foo
{
enum
string
s
=
""
;
}
void
main
()
{
Foo
.
s
=
""
;
}