https://gcc.gnu.org/bugzilla/show_bug.cgi?id=87125
ensadc at mailnesia dot com changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |ensadc at mailnesia dot com
--- Comment #2 from ensadc at mailnesia dot com ---
Reduced:
template<typename br> struct ch {
template<typename by> constexpr ch(by) noexcept(br());
};
class ce : ch<int> {
using ch::ch;
};
void f() {
noexcept(ce(0));
}
