view clang/test/PCH/cxx2a-concept-specialization-expr.cpp @ 221:79ff65ed7e25

LLVM12 Original
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Tue, 15 Jun 2021 19:15:29 +0900
parents 1d019706d866
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