URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [lookup/] [strong-using-5.C] - Rev 701
Go to most recent revision | Compare with Previous | Blame | View Log
// PR c++/33486
// { dg-options "" }
namespace A
{
inline namespace B
{
struct T
{
struct U { };
U f();
};
}
inline namespace C
{
void g (T::U);
}
}
int main()
{
A::T t;
g(t.f());
}
Go to most recent revision | Compare with Previous | Blame | View Log