aboutsummaryrefslogtreecommitdiff
path: root/test/PCH/chain-decls.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/PCH/chain-decls.c')
-rw-r--r--test/PCH/chain-decls.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/test/PCH/chain-decls.c b/test/PCH/chain-decls.c
index f790a29254..b3daa4a7b7 100644
--- a/test/PCH/chain-decls.c
+++ b/test/PCH/chain-decls.c
@@ -10,7 +10,7 @@
// CHECK: void f();
// CHECK: void g();
-void h() {
+int h() {
f();
g();
@@ -19,4 +19,9 @@ void h() {
struct two y;
two();
struct three z;
+
+ many(0);
+ struct many m;
+
+ noret();
}