URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-stable/] [gcc-4.5.1/] [gcc/] [testsuite/] [g++.dg/] [lookup/] [using18.C] - Rev 826
Compare with Previous | Blame | View Log
// Copyright (C) 2007 Free Software Foundation
// Contributed by Ollie Wild <aaw@google.com>
// { dg-do compile }
namespace N1 {
void f ();
struct f; // { dg-error "" "candidate" }
}
namespace N2 {
void f (int);
struct f; // { dg-error "" "candidate" }
}
namespace M {
using namespace N1;
using namespace N2;
}
using M::f; // { dg-error "ambiguous" }