// PR c++/67139 // { dg-do compile { target c++17 } } // { dg-options "-fconcepts" } template constexpr typename T::type::value_type _v = T::type::value; template concept IsTrue_ = _v; template concept Unpossible = IsTrue_; template constexpr bool unpossible() { return false; } template constexpr bool unpossible() { return true; } static_assert((!unpossible()), "");