summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/noncompile/20040203-3.cc
diff options
context:
space:
mode:
authorpaolo <paolo@138bc75d-0d04-0410-961f-82ee72b054a4>2004-02-03 11:21:01 +0000
committerpaolo <paolo@138bc75d-0d04-0410-961f-82ee72b054a4>2004-02-03 11:21:01 +0000
commite1aed66f129091f333c0f2d63065d37599a60703 (patch)
tree2a211d59cb9876b2063850844cf1bb55d5b6020d /gcc/testsuite/gcc.dg/noncompile/20040203-3.cc
parent13c2a763caa54ea640eddd0a9096f17c5c2564fd (diff)
downloadgcc-e1aed66f129091f333c0f2d63065d37599a60703.tar.gz
2004-02-03 Paolo Bonzini <bonzini@gnu.org>
PR c/11658 PR c/13994 * gcc.dg/noncompile/20040203-1.c: New test. * gcc.dg/noncompile/20040203-2.c: Likewise. * gcc.dg/noncompile/20040203-3.c: Likewise. * gcc.dg/20040203-1.c: Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@77167 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/testsuite/gcc.dg/noncompile/20040203-3.cc')
-rw-r--r--gcc/testsuite/gcc.dg/noncompile/20040203-3.cc16
1 files changed, 16 insertions, 0 deletions
diff --git a/gcc/testsuite/gcc.dg/noncompile/20040203-3.cc b/gcc/testsuite/gcc.dg/noncompile/20040203-3.cc
new file mode 100644
index 00000000000..bd57c4dfe43
--- /dev/null
+++ b/gcc/testsuite/gcc.dg/noncompile/20040203-3.cc
@@ -0,0 +1,16 @@
+/* PR/11658 The error message was quite mysterious for gcc up to 3.4.x */
+/* { dg-options "-std=gnu89" } */
+
+struct s { char c[1]; };
+struct s f(void);
+
+int bug_if(void) { if (f().c) return 1; else return 0; } /* { dg-error "array that cannot be converted" } */
+int bug_while(void) { while (f().c); } /* { dg-error "array that cannot be converted" } */
+int bug_do_while(void) { do ; while (f().c); } /* { dg-error "array that cannot be converted" } */
+int bug_for(void) { for ( ; f().c; ) ; } /* { dg-error "array that cannot be converted" } */
+int bug_or(void) { return (f().c || 1); } /* { dg-error "array that cannot be converted" } */
+int bug_and(void) { return (f().c && 1); } /* { dg-error "array that cannot be converted" } */
+int bug_cond(void) { return (f().c ? 1 : 0); } /* { dg-error "array that cannot be converted" } */
+int bug_cond2(void) { return (f().c ? : 0); } /* { dg-error "array that cannot be converted" } */
+int bug_not(void) { return !f().c; } /* { dg-error "array that cannot be converted" } */
+int bug_bool(void) { return (_Bool) f().c; } /* { dg-error "array that cannot be converted" } */