blob: 2702cd61bba6ee08f73fee5bf1cfcef48da1f166 [file] [log] [blame]
Douglas Gregor88c9a462009-04-17 21:46:47 +00001// Test this without pch.
Daniel Dunbar4fcfde42009-11-08 01:45:36 +00002// RUN: clang-cc -include %S/multiple_decls.h -fsyntax-only -ast-print -o - %s
Douglas Gregor88c9a462009-04-17 21:46:47 +00003
4// Test with pch.
Daniel Dunbar4fcfde42009-11-08 01:45:36 +00005// RUN: clang-cc -emit-pch -o %t %S/multiple_decls.h
Douglas Gregor88c9a462009-04-17 21:46:47 +00006// RUN: clang-cc -include-pch %t -fsyntax-only -ast-print -o - %s
7
8void f0(char c) {
9 wide(c);
10}
11
12struct wide w;
13struct narrow n;
14
15void f1(int i) {
16 narrow(i);
17}