Sign in
gnu
/
gcc
/
1f16a020acbea0af26209478990b83b1a1ba3a2b
/
.
/
gcc
/
testsuite
/
g++.old-deja
/
g++.martin
/
overload1.C
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
);
}