blob: 376210e71a773065ddaa1dc08d954c29542bc8d2 [file] [log] [blame]
// Test this without pch.
// RUN: %clang_cc1 -include %S/multiple_decls.h -ast-print -o - %s
// Test with pch.
// RUN: %clang_cc1 -emit-pch -o %t %S/multiple_decls.h
// RUN: %clang_cc1 -include-pch %t -ast-print -o - %s
void f0(char c) {
wide(c);
}
struct wide w;
struct narrow n;
void f1(int i) {
narrow(i);
}