aboutsummaryrefslogtreecommitdiff
path: root/tests/struct-copy.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/struct-copy.c')
-rw-r--r--tests/struct-copy.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/tests/struct-copy.c b/tests/struct-copy.c
deleted file mode 100644
index 33084aa..0000000
--- a/tests/struct-copy.c
+++ /dev/null
@@ -1,8 +0,0 @@
-struct s {
- char s[5];
- float f;
-} x;
-
-void f(void) {
- struct s y = x;
-}