aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/pr14765-1.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gcc.dg/pr14765-1.c')
-rw-r--r--gcc/testsuite/gcc.dg/pr14765-1.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/gcc/testsuite/gcc.dg/pr14765-1.c b/gcc/testsuite/gcc.dg/pr14765-1.c
deleted file mode 100644
index d2b341839ce..00000000000
--- a/gcc/testsuite/gcc.dg/pr14765-1.c
+++ /dev/null
@@ -1,11 +0,0 @@
-/* Empty statement expressions should get void type. Bug 14765 from
- Serge Belyshev <belyshev@lubercy.com>. */
-/* { dg-do compile } */
-/* { dg-options "" } */
-
-int a;
-void fun ()
-{
- a = 0;
- a = ({}); /* { dg-error "not ignored" "void stmt expr" } */
-}