blob: 782c8bf4efc72676fa97c812c2478b79e5d7d83b [file] [log] [blame]
// { dg-do run }
//Overload resolution should consider both declarations of func identically.
struct S{};
void func(S&){}
int main()
{
void func(S&);
S s;
func(s);
}