r365695 - My first test commit.

Saar Raz via cfe-commits cfe-commits at lists.llvm.org
Wed Jul 10 13:01:45 PDT 2019


Author: saar.raz
Date: Wed Jul 10 13:01:44 2019
New Revision: 365695

URL: http://llvm.org/viewvc/llvm-project?rev=365695&view=rev
Log:
My first test commit.

Modified:
    cfe/trunk/test/CXX/concepts-ts/dcl.dcl/dcl.spec/dcl.spec.concept/p1.cpp

Modified: cfe/trunk/test/CXX/concepts-ts/dcl.dcl/dcl.spec/dcl.spec.concept/p1.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CXX/concepts-ts/dcl.dcl/dcl.spec/dcl.spec.concept/p1.cpp?rev=365695&r1=365694&r2=365695&view=diff
==============================================================================
--- cfe/trunk/test/CXX/concepts-ts/dcl.dcl/dcl.spec/dcl.spec.concept/p1.cpp (original)
+++ cfe/trunk/test/CXX/concepts-ts/dcl.dcl/dcl.spec/dcl.spec.concept/p1.cpp Wed Jul 10 13:01:44 2019
@@ -30,6 +30,7 @@ template<typename T>
 concept bool D7() throw(int) { return true; } // expected-error {{function concept cannot have exception specification}}
 
 // Tag
+
 concept class CC1 {}; // expected-error {{'concept' can only appear on the definition of a function template or variable template}}
 concept struct CS1 {}; // expected-error {{'concept' can only appear on the definition of a function template or variable template}}
 concept union CU1 {}; // expected-error {{'concept' can only appear on the definition of a function template or variable template}}




More information about the cfe-commits mailing list