comparison gcc/testsuite/g++.dg/parse/namespace1.C @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents 04ced10e8804
children
comparison
equal deleted inserted replaced
111:04ced10e8804 131:84e7813d76e9
1 namespace foo { 1 namespace foo {
2 void baz(int); 2 void baz(int);
3 } 3 }
4 4
5 int bar(int foo) { 5 void bar(int foo) {
6 foo::baz (3); 6 foo::baz (3);
7 } 7 }