c++: Implement for namespace statics CWG 2867 - Order of initialization for structure...
[official-gcc.git] / gcc / testsuite / gcc.dg / qual-assign-7.c
blob3e064e82f5f3cecc2fe5659b2ba76b95b87db88d
1 /* test that assignment drops qualifiers, Bug 98047 */
2 /* { dg-do compile } */
3 /* { dg-options "" } */
6 volatile int jv;
7 extern int j;
8 extern typeof(jv = 1) j;
10 _Atomic int ja;
11 extern typeof(ja = 1) j;
13 int * __restrict pa;
14 extern int *p;
15 extern typeof(pa = 0) p;