blob: ecb7f6b12f7d0d419c6cc26b78dc47cd86bada4d [file] [log] [blame]
// PR c++/92746
// { dg-do compile { target c++17_only } }
// { dg-options "-fconcepts" }
template<typename T> concept bool C3() { return true; }
static_assert(noexcept(C3<int>()), "function concept should be treated as if noexcept(true) specified");