aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.ns/ns14.C
blob: 5a3cc7010748aeabb9a47ea021ad062c8f549565 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//Special g++ Options: -fhonor-std
namespace std{ 
  int f(){
    return 0;
  }
}

int f()
{
  return 1;
}

int main()
{
  return std::f();
}