blob: 782c8bf4efc72676fa97c812c2478b79e5d7d83b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// { 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);
}
|