aboutsummaryrefslogtreecommitdiff
path: root/testcases/anonymous_struct2.c
blob: b17e6c00f5faecd48886189fc3f8eee5c3969f3a (plain) (blame)
1
2
3
4
5
6
7
int main() {
    struct {int x, y;} a;
    struct {int x, y;} b, c;
    a = b;
    b = c;
    c = a;
}