// PR c++/68666 // { dg-do compile { target c++17_only } } // { dg-options "-fconcepts-ts" } struct A { template static constexpr bool val = true; }; template concept bool C = A::val; C{T} struct B {};