view gcc/testsuite/g++.dg/cpp2a/concepts-nonbool1.C @ 158:494b0b89df80 default tip

...
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 25 May 2020 18:13:55 +0900
parents 2b5abeee2509
children
line wrap: on
line source

// PR c++/94186
// { dg-do compile { target concepts } }

template <typename T>
struct is_small
{
  enum { value = sizeof(T) <= 4 };
};

template <typename T>
  requires is_small<T>::value	// { dg-error "bool" }
void fun(T) {}

template <typename T>
void fun(T) {}

int main()
{
  fun(1);  // { dg-message "" }
}