// PR c++/44627 // { dg-do compile } struct A { A *foo (); }; template void bar () { A::foo ().anything; // { dg-error "without object" } } void baz () { bar (); }