aboutsummaryrefslogtreecommitdiff
path: root/testcases/local_struct.c
blob: 28cb223a56bfb3b877106cf76fe75107847f183b (plain) (blame)
1
2
3
4
5
6
7
struct A {int x; int y; } b;
int f(struct A {int a;} p) {
    struct A a;
    a.x;
}
int main() {
}