2008-07-26 04:54:07 +08:00
|
|
|
// RUN: clang %s -fsyntax-only -verify -std=c99
|
2008-07-26 04:02:29 +08:00
|
|
|
// rdar://6095180
|
|
|
|
|
|
|
|
#include <assert.h>
|
|
|
|
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];
|
|
|
|
|
|
|
|
|
|
|
|
// comma does array/function promotion in c99.
|
|
|
|
int X[sizeof(0, (foo().c)) == sizeof(char*) ? 1 : -1];
|
|
|
|
int Y[sizeof(0, (a,b).c) == sizeof(char*) ? 1 : -1];
|
|
|
|
int Z[sizeof(0, (a=b).c) == sizeof(char*) ? 1 : -1];
|
2008-07-26 04:02:29 +08:00
|
|
|
|