(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
abi/
guard1.C
// PR c++/41611
// { dg-final { scan-assembler-not "_ZGVZN1A1fEvE1i" } }

struct A {
  static int f()
  {
    static int &i = *new int();
    return i;
  }
};