2009-03-24 10:24:46 +08:00
|
|
|
// RUN: clang-cc %s -fsyntax-only -verify -std=c89
|
2008-07-26 04:02:29 +08:00
|
|
|
// rdar://6095180
|
|
|
|
|
|
|
|
struct s { char c[17]; };
|
2008-07-26 04:54:07 +08:00
|
|
|
extern struct s foo(void);
|
2008-07-26 04:02:29 +08:00
|
|
|
|
2008-07-26 04:54:07 +08:00
|
|
|
struct s a, b, c;
|
2008-07-26 04:02:29 +08:00
|
|
|
|
2008-07-26 04:54:07 +08:00
|
|
|
int A[sizeof((foo().c)) == 17 ? 1 : -1];
|
|
|
|
int B[sizeof((a.c)) == 17 ? 1 : -1];
|
|
|
|
|
|
|
|
|
2008-07-26 05:33:13 +08:00
|
|
|
// comma does not promote array/function in c90 unless they are lvalues.
|
|
|
|
int W[sizeof(0, a.c) == sizeof(char*) ? 1 : -1];
|
|
|
|
int X[sizeof(0, (foo().c)) == 17 ? 1 : -1];
|
|
|
|
int Y[sizeof(0, (a,b).c) == 17 ? 1 : -1];
|
|
|
|
int Z[sizeof(0, (a=b).c) == 17 ? 1 : -1];
|