diff options
Diffstat (limited to 'clang/test/PCH/Inputs/chain-decls2.h')
-rw-r--r-- | clang/test/PCH/Inputs/chain-decls2.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/clang/test/PCH/Inputs/chain-decls2.h b/clang/test/PCH/Inputs/chain-decls2.h new file mode 100644 index 0000000..b8b7d04 --- /dev/null +++ b/clang/test/PCH/Inputs/chain-decls2.h @@ -0,0 +1,12 @@ +void g(); + +struct two {}; +void one(); +struct three {}; // for verification + +void many(int k); +struct many; +void many(int l); +struct many {}; + +void noret() __attribute__((noreturn)); |