blob: 69e2fbec4d8a5fd5ca70822ec62b6cbcb63e88f8 [file] [log] [blame]
// { dg-do compile { target c++2a } }
// { dg-additional-options "-fconcepts-ts" }
template<typename T, typename T::type>
concept bool C = true;
template<C<0> T> class ct {};
struct S
{
using type = int;
};
template class ct<S>;