Commit 3f7547f7 by Martin v. Löwis

New test case.

From-SVN: r24854
parent 36b01134
//Overload resolution should consider both declarations of func identically.
struct S{};
void func(S&){}
int main()
{
void func(S&);
S s;
func(s);
}
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