OSDN Git Service

* g++.old-deja/g++.brendan/scope5.C: Changed "Class" to "Klasse".
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / parse / ref1.C
1 // PR c++/6402
2 // Origin: Wolfgang Bangerth <wolfgang@dealii.org>
3 // { dg-do compile }
4
5 class A
6 {
7     A (const A&);
8   public:
9     A();
10 };
11
12 struct B { A a; };
13
14 struct C : public B
15 {
16     void foo() { const A &ref = B::a; } // taking reference, not a copy!
17 };