summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/abi/guard4.C
blob: 71e6744e3810d5c5ced91c7eb11c9bac3afc579d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// PR c++/93477
// { dg-require-weak }

namespace x {
  struct s {
    s();
    static int a;
  };
  s::s() {}
  // { dg-final { scan-assembler {.weak[^\n]*_ZGVN1x1bE} } }
  struct s __attribute__((weak)) b = s();
}