18 lines · c
1// Test this without pch.2// RUN: %clang_cc1 -include %S/multiple_decls.h -ast-print -o - %s3 4// Test with pch.5// RUN: %clang_cc1 -emit-pch -o %t %S/multiple_decls.h6// RUN: %clang_cc1 -include-pch %t -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}18