URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [g++.dg/] [lookup/] [strong-using-2.C] - Rev 149
Go to most recent revision | Compare with Previous | Blame | View Log
// PR c++/13594
// { dg-do compile }
namespace foo {
namespace foo_impl {
class T; // { dg-error "T" "" }
}
using namespace foo_impl __attribute__((strong));
}
namespace bar {
namespace bar_impl {
class T; // { dg-error "T" "" }
}
using namespace bar_impl __attribute__((strong));
using namespace foo;
}
namespace baz {
using namespace foo;
using namespace bar;
}
foo::T *t1;
bar::T *t2;
baz::T *t3; // { dg-error "(ambiguous|expected|extra)" "" }
Go to most recent revision | Compare with Previous | Blame | View Log