blob: 2d54748bdad2c09f3a47de01a889f4e111be2584 [file] [log] [blame]
// DR 1207
// PR c++/52869
// { dg-do compile { target c++11 } }
void
fn ()
{
struct S {
bool operator!() noexcept(false);
} s;
S t = s;
}