August 06, 2005 Broken using declaration when used on subscript operator | ||||
|---|---|---|---|---|
| ||||
Attachments: |
class A
{
public:
int operator [](int index) const;
};
class B
{
public:
int operator [](int index) const;
};
class C
: public A
, public B
{
public:
using A::operator [];
};
H:\STLSoft\Releases\1.9.x\STLSoft\unittest\build\dm>dmc
using_subs.cpp
using A::operator [];
^
| |||
September 10, 2005 Re: Broken using declaration when used on subscript operator | ||||
|---|---|---|---|---|
| ||||
Posted in reply to Matthew | Any traction on this bug? "Matthew" <admin@stlsoft.dot.dot.dot.dot.org> wrote in message news:dd1jbu$s4c$1@digitaldaemon.com... > > class A > { > public: > int operator [](int index) const; > }; > > class B > { > public: > int operator [](int index) const; > }; > > class C > : public A > , public B > { > public: > using A::operator []; > }; > > > > > H:\STLSoft\Releases\1.9.x\STLSoft\unittest\build\dm>dmc > using_subs.cpp > using A::operator []; > ^ > > > > | |||
Copyright © 1999-2021 by the D Language Foundation
Permalink
Reply