No empty .Rs/.Re
[netbsd-mini2440.git] / gnu / dist / gcc4 / gcc / testsuite / g++.dg / opt / local1.C
blob9cecaee6f2ad4b52de1c90bcfac99fb957074b30
1 // { dg-options "-O" }
3 struct Outer {
4   struct Inner { virtual bool f() = 0; };
5   void g(Inner &) const;
6 };
7  
8 inline void h(const Outer &o)
10   struct Local : public Outer::Inner {
11     virtual bool f() {};
12   };
13   Local l;
14   o.g(l);
17 void f(Outer &req) {
18   h (req);