diff options
Diffstat (limited to 'clang/test/Modules/Inputs/PR28332/a.h')
-rw-r--r-- | clang/test/Modules/Inputs/PR28332/a.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/clang/test/Modules/Inputs/PR28332/a.h b/clang/test/Modules/Inputs/PR28332/a.h new file mode 100644 index 00000000000..1dc96c80fcd --- /dev/null +++ b/clang/test/Modules/Inputs/PR28332/a.h @@ -0,0 +1,8 @@ +#include "b.h" + +class A { + SmallVector<char, 8> LegalIntWidths; + A() {} +}; + +#include "c.h" |