2007-02-20 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
[official-gcc.git] / gcc / testsuite / gcc.dg / lvalue-3.c
blob0745c7ec7e522e9c253fe642d7dc9ef300f27610
1 /* Test that assignment of a read-only variable that gets const-ness
2 from a read-only field is diagnosed. */
3 /* Origin: Joseph Myers <joseph@codesourcery.com> */
4 /* { dg-do compile } */
5 /* { dg-options "" } */
7 struct s { const int a; } x;
8 typeof (x.a) b;
9 void
10 f (void)
12 x.a = 1; /* { dg-error "error: assignment of read-only member 'a'" } */
13 b = 1; /* { dg-error "error: assignment of read-only variable 'b'" } */