]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/gcc.dg/qual-assign-7.c
Update copyright years.
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / qual-assign-7.c
1 /* test that assignment drops qualifiers, Bug 98047 */
2 /* { dg-do compile } */
3 /* { dg-options "" } */
4
5
6 volatile int jv;
7 extern int j;
8 extern typeof(jv = 1) j;
9
10 _Atomic int ja;
11 extern typeof(ja = 1) j;
12
13 int * __restrict pa;
14 extern int *p;
15 extern typeof(pa = 0) p;
16
17
18