brintos

brintos / llvm-project-archived public Read only

0
0
Text · 203 B · 0c99405 Raw
11 lines · c
1// RUN: %clang_cc1 -verify -fsyntax-only -std=c90 %s2// RUN: %clang_cc1 -verify -fsyntax-only -std=c99 %s3// expected-no-diagnostics4 5struct s6{7  int a;8};9 10int a[__builtin_offsetof(struct s, a) == 0];11