blob: ba9f7dd69cde14e6a497d9c824c3f0721e86e9e2 [file] [log] [blame]
/*
TEST_OUTPUT:
---
fail_compilation/fail106.d(12): Error: cannot modify `immutable` expression `"ABC"[2]`
---
*/
// https://issues.dlang.org/show_bug.cgi?id=239
// Internal error: changing string literal elements
void main()
{
"ABC"[2] = 's';
}