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