aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.ns/ns1.C
blob: 7c4fd920e5d0ccf6ad8426f11008e1f57ed2f6fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
namespace foo{
  int eine_funktion(int)
    {
      return 0;
    }

  int eine_funktion(int,int)
    {
      return 1;
    }
}

main(int,char**)
{
  return foo::eine_funktion(1);
}