URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [g++.old-deja/] [g++.martin/] [overload1.C] - Rev 305
Compare with Previous | Blame | View Log
// { dg-do run }
//Overload resolution should consider both declarations of func identically.
struct S{};
void func(S&){}
int main()
{
void func(S&);
S s;
func(s);
}