aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/lookup/anon5.C
blob: c3d36c20f533b77b6f3119ae2d1bcc862e82b914 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// PR c++/28409
// shouldIbevisible should be emitted because it's an extern "C" decl with
// external linkage, even though it's in the anonymous namespace.

namespace
{
  extern "C" int shouldIbevisible()
  {
    return 0;
  }
}

namespace t
{
  extern "C" int shouldIbevisible(void);
}

int main(void)
{
  return t::shouldIbevisible();
}