New test case.

From-SVN: r24854
This commit is contained in:
Martin v. Löwis 1999-01-25 00:48:11 +00:00
parent 36b01134ff
commit 3f7547f7c3

View file

@ -0,0 +1,12 @@
//Overload resolution should consider both declarations of func identically.
struct S{};
void func(S&){}
int main()
{
void func(S&);
S s;
func(s);
}