blob: 442098107504b306a6b1bd99f8a5d2d06a94414c [file] [log] [blame]
Eric Christopher3883e662011-07-26 22:17:02 +00001// RUN: %clang_cc1 %s -emit-llvm -o -
2
3struct s {
4 unsigned long int field[0];
5};
6
7#define OFFS \
8 (((char *) &((struct s *) 0)->field[0]) - (char *) 0)
9
10int foo[OFFS];
11
12