aboutsummaryrefslogtreecommitdiff
path: root/testcases/anonymous_struct2.c
diff options
context:
space:
mode:
Diffstat (limited to 'testcases/anonymous_struct2.c')
-rw-r--r--testcases/anonymous_struct2.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/testcases/anonymous_struct2.c b/testcases/anonymous_struct2.c
deleted file mode 100644
index b17e6c0..0000000
--- a/testcases/anonymous_struct2.c
+++ /dev/null
@@ -1,7 +0,0 @@
-int main() {
- struct {int x, y;} a;
- struct {int x, y;} b, c;
- a = b;
- b = c;
- c = a;
-}