1 /*
2 TEST_OUTPUT:
3 ---
4 fail_compilation/diag8178.d(14): Error: cannot modify manifest constant 's'
5 ---
6 */
7 
8 struct Foo
9 {
10     enum string s = "";
11 }
main()12 void main()
13 {
14     Foo.s = "";
15 }
16