HomeSort by relevance Sort by last modified time
    Searched refs:FCEI (Results 1 - 2 of 2) sorted by null

  /external/clang/test/CXX/concepts-ts/dcl.dcl/dcl.spec/dcl.spec.concept/
p7.cpp 3 template <typename T> concept bool FCEI() { return true; } // expected-note {{previous declaration is here}} expected-note {{previous declaration is here}}
4 template bool FCEI<int>(); // expected-error {{function concept cannot be explicitly instantiated}}
5 extern template bool FCEI<double>(); // expected-error {{function concept cannot be explicitly instantiated}}
p1.cpp 55 template <typename T> concept bool FCEI() { return true; }
56 template concept bool FCEI<int>(); // expected-error {{'concept' cannot be applied on an explicit instantiation}}
57 extern template concept bool FCEI<int>(); // expected-error {{'concept' cannot be applied on an explicit instantiation}}

Completed in 361 milliseconds