aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.ns/ns13.C
blob: 0b8c38a1cbb817a58e59f70d81ba467ea2817d68 (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()
{}

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