1 // { dg-do compile { target c++14 } }
2 // { dg-additional-options "-fconcepts" }
3 
4 template<template<typename> class T>
5 concept bool C = T<int>::value;
6 C c = 1;  // { dg-error "invalid reference to concept" }
7