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