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