D - RIAA and constructors
- Christof Meerwald (23/23) Oct 09 2002 Is it a bug or does it work as designed?
- Walter (3/26) Oct 09 2002 It's a bug. -Walter
Is it a bug or does it work as designed?
auto class A
{
this()
// functions cannot return auto A
{
printf("A.this()\n");
}
~this()
{
printf("A.~this()\n");
}
};
int main(char[][] argv)
{
auto A a = new A();
printf("Hello world.\n");
return 0;
}
bye, Christof
--
http://cmeerw.org JID: cmeerw jabber.at
mailto cmeerw at web.de
Oct 09 2002
It's a bug. -Walter
"Christof Meerwald" <cmeerw web.de> wrote in message
news:ao16gh$1hei$2 digitaldaemon.com...
Is it a bug or does it work as designed?
auto class A
{
this()
// functions cannot return auto A
{
printf("A.this()\n");
}
~this()
{
printf("A.~this()\n");
}
};
int main(char[][] argv)
{
auto A a = new A();
printf("Hello world.\n");
return 0;
}
bye, Christof
--
http://cmeerw.org JID: cmeerw jabber.at
mailto cmeerw at web.de
Oct 09 2002








"Walter" <walter digitalmars.com>