(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
DRs/
dr1207-2.C
// DR 1207
// PR c++/52869
// { dg-do compile { target c++11 } }

void
fn ()
{
  struct S {
    bool operator!() noexcept(false);
  } s;
  S t = s;
}