7 lines · c
1// RUN: %clang_cc1 -fsyntax-only -verify %s2 3#define __pso __attribute__((preserve_static_offset))4 5struct foo { int a; } __pso; // expected-warning{{unknown attribute}}6union quux { int a; } __pso; // expected-warning{{unknown attribute}}7