view gcc/testsuite/g++.dg/concepts/var-concept5.C @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children 84e7813d76e9
line wrap: on
line source

// { dg-options "-std=c++17 -fconcepts" }

template<typename T1, typename T2>
concept bool C1 = true;

template<typename T1, typename T2, typename T3>
concept bool C2 = true;


template<C1 T> // { dg-error "not a type" }
constexpr bool f1( )  { return true; }

template<C2<int> T> // { dg-error "expected|not a type" }
constexpr bool f2( )  { return true; }