summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/ext/visibility/anon3.C
blob: 9def559d2538dd24b88bb89dafb46f01a1054e6a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// PR c++/31187
// Bug: the repeated declaration was confusing the compiler into
// thinking that foo1 had language internal linkage.

class foo { };

namespace
{
  extern foo foo1;
  foo foo1;
}

template< foo * >
class bar { };

bar< &foo1 > bar1;