http://gcc.gnu.org/bugzilla/show_bug.cgi?id=60569

--- Comment #2 from Marek Polacek <mpolacek at gcc dot gnu.org> ---
struct A
{
  void foo ();
  struct
  {
    int i;
    void bar () { i = 0; }
  } s;
};

void A::foo () { s.bar (); }

Reply via email to