[Bug c++/11786] operator() call on variable in other namespace not recognized
gccbugs at contacts dot eelis dot net
gcc-bugzilla@gcc.gnu.org
Mon Aug 4 07:28:00 GMT 2003
PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11786
------- Additional Comments From gccbugs at contacts dot eelis dot net 2003-08-04 07:28 -------
Simplified snippet:
namespace N
{
struct A {};
struct S { void operator() (A); } s;
}
using N::s;
void f () { s(N::A()); }
More information about the Gcc-bugs
mailing list