(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
warn/
Wreturn-local-addr-3.C
// PR c++/51270
// { dg-options "-O2" }

const int& f(long l)
{
  const int& i = l;
  return i;  // { dg-warning "address of local variable" }
}