aboutsummaryrefslogtreecommitdiff
path: root/testcases/fail6.c
blob: 3419ce94812b5b57f81730c9618774c8b39e087b (plain) (blame)
1
2
3
4
5
int main() {
    struct C {int x;} *c;
    /* fail because no member called `y' */
    c->y;
}