blob: 01a3be7b9e4cf971332de1798787923cfb303df9 [file] [log] [blame]
Daniel Dunbar461d08c2008-08-28 18:42:20 +00001// RUN: clang -verify -fsyntax-only -std=c90 %s &&
2// RUN: clang -verify -fsyntax-only -std=c99 %s
3
4struct s
5{
6 int a;
7};
8
9int a[__builtin_offsetof(struct s, a) == 0];