xref: /llvm-project/clang/test/Import/attr/Inputs/S.cpp (revision 818de32f31e8075657dd27938e4aeb1a46f3f631)
1 extern char f() __attribute__((const));
2 
3 struct S {
4   struct {
5     int a __attribute__((packed));
6   };
7 };
8 
stmt()9 void stmt() {
10 #pragma unroll
11   for (;;)
12     ;
13 }
14