aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8.1/gcc/testsuite/gcc.dg/union-3.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.8.1/gcc/testsuite/gcc.dg/union-3.c')
-rw-r--r--gcc-4.8.1/gcc/testsuite/gcc.dg/union-3.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/gcc-4.8.1/gcc/testsuite/gcc.dg/union-3.c b/gcc-4.8.1/gcc/testsuite/gcc.dg/union-3.c
deleted file mode 100644
index 3e89b755a..000000000
--- a/gcc-4.8.1/gcc/testsuite/gcc.dg/union-3.c
+++ /dev/null
@@ -1,10 +0,0 @@
-/* PR target/27421 */
-/* { dg-do compile } */
-
-union A
-{
- int i;
- void x[1]; /* { dg-error "array of voids" } */
-};
-
-void foo(union A a) {}