URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [lookup/] [using9.C] - Rev 717
Go to most recent revision | Compare with Previous | Blame | View Log
// { dg-do compile }
// Origin: C++ Standard Draft (7.3.3/12)
// PR c++/2294: using declarations should not conflict, but only cause
// an ambiguous overload set to be created.
namespace B {
void f(int); // { dg-message "note" }
void f(double); // { dg-message "note" }
}
namespace C {
void f(int); // { dg-message "note" }
void f(double); // { dg-message "note" }
void f(char); // { dg-message "note" }
}
void h()
{
using B::f;
using C::f;
f('h');
f(1); // { dg-error "ambiguous" }
// { dg-message "candidate" "candidate note" { target *-*-* } 22 }
void f(int); // { dg-error "previous using declaration" }
}
void m()
{
void f(int);
using B::f; // { dg-error "already declared" }
}
Go to most recent revision | Compare with Previous | Blame | View Log