blob: 8464fba6f9ba1c121018c6eff0ac894f4c662663 [file] [log] [blame]
//Overload resolution should consider both declarations of func identically.
struct S{};
void func(S&){}
int main()
{
void func(S&);
S s;
func(s);
}