Mercurial > hg > CbC > CbC_llvm
comparison clang/test/PCH/reinclude.cpp @ 150:1d019706d866
LLVM10
author | anatofuz |
---|---|
date | Thu, 13 Feb 2020 15:10:13 +0900 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
147:c2174574ed3a | 150:1d019706d866 |
---|---|
1 // Test without PCH | |
2 // RUN: %clang_cc1 %s -include %S/reinclude1.h -include %S/reinclude2.h -fsyntax-only -verify | |
3 | |
4 // RUN: %clang_cc1 -x c++-header %S/reinclude1.h -emit-pch -o %t1 | |
5 // RUN: %clang_cc1 -x c++-header %S/reinclude2.h -include-pch %t1 -emit-pch -o %t2 | |
6 // RUN: %clang_cc1 %s -include-pch %t2 -fsyntax-only -verify | |
7 // RUN: %clang_cc1 -x c++-header %S/reinclude2.h -include-pch %t1 -emit-pch -o %t2 | |
8 // RUN: %clang_cc1 %s -include-pch %t2 -fsyntax-only -verify | |
9 | |
10 // expected-no-diagnostics | |
11 | |
12 int q2 = A::y; |