[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / PCH / builtins.c
blobc6f5773aec26af2fa6a8611e5da4cace20a86d7d
1 // Test this without pch.
2 // RUN: %clang_cc1 -include %S/builtins.h -fsyntax-only -verify %s
4 // Test with pch.
5 // RUN: %clang_cc1 -emit-pch -o %t %S/builtins.h
6 // RUN: %clang_cc1 -include-pch %t -fsyntax-only -verify %s
8 // expected-no-diagnostics
10 void hello(void) {
11 printf("Hello, World!");