aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.ns/ns13.C
blob: 0272055d52c1d08c800fb257eb95cbb5301e34e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
namespace std{ 
  void f(){}
  void g();
  int i=5;
}

void std::g()
{}

main()
{
  return std::i-5;
}