d: Merge upstream dmd, druntime 4c18eed967, phobos d945686a4.
[official-gcc.git] / gcc / testsuite / gdc.test / fail_compilation / fail20658.d
blobfd422aaa168471fd8dd5af71903df114bc8d1324
1 /*
2 TEST_OUTPUT:
3 ---
4 fail_compilation/fail20658.d(14): Error: field `U.m` cannot modify fields in `@safe` code that overlap fields with other storage classes
5 ---
6 */
8 union U
10 int m;
11 immutable int i;
13 U u;
14 enum e = () @safe { u.m = 13; };