d: Merge upstream dmd, druntime 4c18eed967, phobos d945686a4.
[official-gcc.git] / gcc / testsuite / gdc.test / fail_compilation / fail7369.d
blob4ba11e4abb7836d52edfcfbf9970ee2396ee38b9
1 /*
2 TEST_OUTPUT:
3 ---
4 fail_compilation/fail7369.d(9): Error: cannot modify `this.a` in `const` function
5 ---
6 */
7 struct S7369 {
8 int a;
9 invariant() { a += 5; }