|
Archives
D Programming
DD.gnu digitalmars.D digitalmars.D.bugs digitalmars.D.dtl digitalmars.D.dwt digitalmars.D.announce digitalmars.D.learn digitalmars.D.debugger C/C++ Programming
c++c++.announce c++.atl c++.beta c++.chat c++.command-line c++.dos c++.dos.16-bits c++.dos.32-bits c++.idde c++.mfc c++.rtl c++.stl c++.stl.hp c++.stl.port c++.stl.sgi c++.stlsoft c++.windows c++.windows.16-bits c++.windows.32-bits c++.wxwindows digitalmars.empire digitalmars.DMDScript |
c++ - [Bug report] Illegal cast
A change from the preprocessor bugs.
I think the following is valid:
struct base
{
};
struct derived : base
{
};
struct convertible
{
operator derived() { return derived(); }
};
void test(base x)
{
}
int main()
{
convertible x;
test(x);
}
But dmc gives the error message:
slice.cpp(21) : Error: illegal cast
from: derived
to : base
Daniel
Aug 12 2004
Thanks for all the reports. I've added them to the bug list. -Walter Aug 12 2004
|