blob: 491a6255742e33bcd3f7d83cb037de926637cb4c [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 = "";
}