blob: 26c96fe625be91a1bbe6795b50f713466ca9f949 [file] [log] [blame]
Daniel Dunbard7d5f022009-03-24 02:24:46 +00001// RUN: clang-cc -verify -fsyntax-only -std=c90 %s &&
2// RUN: clang-cc -verify -fsyntax-only -std=c99 %s
Daniel Dunbaraa1f9f12008-08-28 18:42:20 +00003
4struct s
5{
6 int a;
7};
8
9int a[__builtin_offsetof(struct s, a) == 0];