diff options
Diffstat (limited to 'test/PCH/Inputs/chain-decls1.h')
-rw-r--r-- | test/PCH/Inputs/chain-decls1.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/test/PCH/Inputs/chain-decls1.h b/test/PCH/Inputs/chain-decls1.h new file mode 100644 index 000000000000..9de446164d6d --- /dev/null +++ b/test/PCH/Inputs/chain-decls1.h @@ -0,0 +1,11 @@ +void f(); + +struct one {}; +void two(); + +void many(int i); +struct many; +void many(int j); +struct many; + +void noret(); |