1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
// PR c++/44627 // { dg-do compile } struct A { A *foo (); }; template <class T> void bar () { A::foo ().anything; // { dg-error "without object" } } void baz () { bar <int> (); }