You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
365 B
8 lines
365 B
4 months ago
|
// RUN: %clang_cc1 -include %S/cmdline-include1.h -x c-header %S/cmdline-include2.h -emit-pch -o %t
|
||
|
// RUN: %clang_cc1 %s -include-pch %t -fsyntax-only -verify
|
||
|
// RUN: %clang_cc1 -x c-header %S/cmdline-include1.h -emit-pch -o %t
|
||
|
// RUN: %clang_cc1 %s -include-pch %t -include %S/cmdline-include2.h -fsyntax-only -verify
|
||
|
// expected-no-diagnostics
|
||
|
|
||
|
int g = x1 + x2;
|