(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
concepts/
pr71127.C
// { dg-do compile { target c++17_only } }
// { dg-options "-fconcepts-ts" }

template<template<typename> class T>
concept bool C = T<int>::value;

C c = 1;  // { dg-error "does not constrain a type" }