PR2728.c revision 4fcfde4d5c8f25e40720972a5543d538a0dcb220
1// RUN: clang-cc -verify -fsyntax-only -std=c90 %s
2// RUN: clang-cc -verify -fsyntax-only -std=c99 %s
3
4struct s
5{
6  int a;
7};
8
9int a[__builtin_offsetof(struct s, a) == 0];
10