URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [diagnostic/] [method1.C] - Rev 717
Go to most recent revision | Compare with Previous | Blame | View Log
// PR c++/44627
// { dg-do compile }
struct A
{
A *foo ();
};
template <class T>
void
bar ()
{
A::foo ().anything; // { dg-error "request for member" }
}
void
baz ()
{
bar <int> ();
}
// { dg-prune-output "without object" }
Go to most recent revision | Compare with Previous | Blame | View Log