Commit 0d7e147b by Jason Merrill

update

From-SVN: r19830
parent 95480b77
//Build don't link:
struct X{
void i(); // ERROR -
void i(int);
void i();
void i(int); // ERROR -
int i; // ERROR - conflict
};
......@@ -5,6 +5,6 @@ struct X{
struct Y:X{
void f(int);
void f();
using X::f; // ERROR - conflict
void f(); // ERROR - conflict
using X::f;
}; // ERROR -
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment