mirror of
https://github.com/llvm/llvm-project.git
synced 2025-05-02 13:46:08 +00:00
10 lines
175 B
C
10 lines
175 B
C
// RUN: clang-cc -verify -fsyntax-only -std=c90 %s &&
|
|
// RUN: clang-cc -verify -fsyntax-only -std=c99 %s
|
|
|
|
struct s
|
|
{
|
|
int a;
|
|
};
|
|
|
|
int a[__builtin_offsetof(struct s, a) == 0];
|