(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
ipa/
pr69241-1.C
// PR ipa/69241
// { dg-do compile }
// { dg-options "-O2" }

struct R { R (const R &) {} };
__attribute__ ((noreturn)) R bar ();

R
foo ()
{
  bar ();
}