blob: 38d77e1c69dc1e591897d4dca704978c5f04eca2 [file] [log] [blame]
// { dg-do assemble }
typedef const struct {
int x;
} Test;
static void foo(Test);
static void foo(Test t)
{
t.x = 0; // { dg-error "" } assignment of read-only member
return;
}