summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/pr22308-1.c
blob: bcbb294c2cbd274fc25b62503ef0bd0ce3776d35 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* Bug 22308: C_TYPE_FIELDS_READONLY not updated on type variants.  */
/* { dg-do compile } */
/* { dg-options "" } */

struct foo s;
volatile struct foo t;
struct foo { const int z; };

void
bar (void)
{
  t = s; /* { dg-error "error: assignment of read-only variable 't'" } */
}