Mercurial > hg > CbC > CbC_llvm
view clang/test/PCH/cxx2a-concept-specialization-expr.cpp @ 266:00f31e85ec16 default tip
Added tag current for changeset 31d058e83c98
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Sat, 14 Oct 2023 10:13:55 +0900 |
parents | 2e18cbf3894f |
children |
line wrap: on
line source
// RUN: %clang_cc1 -std=c++2a -emit-pch %s -o %t // RUN: %clang_cc1 -std=c++2a -include-pch %t -verify %s // RUN: %clang_cc1 -std=c++2a -emit-pch -fpch-instantiate-templates %s -o %t // RUN: %clang_cc1 -std=c++2a -include-pch %t -verify %s // expected-no-diagnostics #ifndef HEADER #define HEADER template<typename... T> concept C = true; namespace n { template<typename... T> concept C = true; } void f() { (void)C<int>; (void)C<int, void>; (void)n::C<void>; } #else /*included pch*/ int main() { (void)C<int>; (void)C<int, void>; (void)n::C<void>; f(); } #endif // HEADER