URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [overload/] [extern-C-2.C] - Rev 701
Go to most recent revision | Compare with Previous | Blame | View Log
// PR c++/39742
void f( int, ...);
struct S
{
};
void
g()
{
void f( int, ...);
S t;
f(1, t);
}
void
f( int i, ...)
{
}
Go to most recent revision | Compare with Previous | Blame | View Log