blob: a63afc24f16d2c2af5f0461b8d876471926b81b1 [file] [log] [blame]
// { dg-options "-O" }
struct Outer {
struct Inner { virtual bool f() = 0; };
void g(Inner &) const;
};
inline void h(const Outer &o)
{
struct Local : public Outer::Inner {
virtual bool f() { return true; };
};
Local l;
o.g(l);
}
void f(Outer &req) {
h (req);
}