]> gcc.gnu.org Git - gcc.git/blame - gcc/testsuite/g++.old-deja/g++.other/using7.C
spec4.C: Remove stray semicolon.
[gcc.git] / gcc / testsuite / g++.old-deja / g++.other / using7.C
CommitLineData
52eccb8f
JM
1// Build don't link:
2
3class A {
4protected:
5 static void f() {};
6};
7
8class B : A {
9public:
10 using A::f;
11 void g() {
12 f();
13 A::f();
14 }
15 struct C {
16 void g() {
17 f();
18 A::f();
19 }
20 };
21};
This page took 0.982539 seconds and 5 git commands to generate.