Files
clang-p2996/clang/test/Import/attr/Inputs/S.cpp
Aleksei Sidorin 8f266dbbdc [ASTImporter] Properly import SourceLocations of Attrs
Patch by Rafael Stahl!

Differential Revision: https://reviews.llvm.org/D46115

llvm-svn: 331762
2018-05-08 12:45:21 +00:00

14 lines
155 B
C++

extern void f() __attribute__((const));
struct S {
struct {
int a __attribute__((packed));
};
};
void stmt() {
#pragma unroll
for (;;)
;
}