diff options
Diffstat (limited to 'gcc/testsuite/gcc.c-torture/compile/20010124-1.c')
-rw-r--r-- | gcc/testsuite/gcc.c-torture/compile/20010124-1.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/gcc/testsuite/gcc.c-torture/compile/20010124-1.c b/gcc/testsuite/gcc.c-torture/compile/20010124-1.c new file mode 100644 index 000000000..dd2d9c117 --- /dev/null +++ b/gcc/testsuite/gcc.c-torture/compile/20010124-1.c @@ -0,0 +1,9 @@ +/* Origin: testcase from Joseph Myers <jsm28@cam.ac.uk>, problem pointed + out in a post to comp.std.c + <980283801.3063.0.nnrp-07.c2deb1c2@news.demon.co.uk> + by Dibyendu Majumdar <dibyendu@mazumdar.demon.co.uk>. + Compound literals should be parsed as postfix expressions, rather than + as cast expressions. In particular, they are valid operands of sizeof. */ + +struct s { int a; int b; }; +char x[((sizeof (struct s){ 1, 2 }) == sizeof (struct s)) ? 1 : -1]; |