blob: b9ebac2f22d727767d8215571c607abe51919302 [file] [log] [blame]
// Build don't link:
typedef const struct {
int x;
} Test;
static void foo(Test);
static void foo(Test t)
{
t.x = 0; // ERROR - assignment of read-only member
return;
}