(root)/
gcc-13.2.0/
gcc/
testsuite/
gdc.test/
fail_compilation/
fail106.d
/*
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';
}