blob: 0e7c580924a142e04cec7cc963cc1fbb03187d35 [file] [log] [blame]
// 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> ();
}