
Now with concepts support merged and mostly complete, we do not need -fconcepts-ts (which was also misleading as we were not implementing the TS) and can enable concepts features under C++2a. A warning will be generated if users still attempt to use -fconcepts-ts.
8 lines
173 B
C++
8 lines
173 B
C++
|
|
// Support parsing of concepts
|
|
// Disabled for now.
|
|
// expected-no-diagnostics
|
|
|
|
// RUN: %clang_cc1 -std=c++14 -x c++ -verify %s
|
|
// template<typename T> concept C1 = true;
|