[Issue 1692] Abstract class dynamic creation bug

2011-10-14 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=1692


Walter Bright bugzi...@digitalmars.com changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||bugzi...@digitalmars.com
 Resolution||FIXED


--- Comment #5 from Walter Bright bugzi...@digitalmars.com 2011-10-13 
23:25:02 PDT ---
https://github.com/D-Programming-Language/druntime/commit/b7270004a95c33372e5b15bc72069c001b064acf

https://github.com/D-Programming-Language/phobos/commit/23109c032d9f3117f154a8bb0f588ef9ada85565

https://github.com/D-Programming-Language/dmd/commit/0a9a27646954d73dd32e38175a6126fbba6bd334

https://github.com/D-Programming-Language/dmd/commit/90dfda907b4b634effc12bc7ea546ab6b3ffe1b0

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
--- You are receiving this mail because: ---


[Issue 1692] Abstract class dynamic creation bug

2011-09-14 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=1692


yebblies yebbl...@gmail.com changed:

   What|Removed |Added

 CC||opantm+s...@gmail.com


--- Comment #4 from yebblies yebbl...@gmail.com 2011-09-14 22:36:40 EST ---
*** Issue 6667 has been marked as a duplicate of this issue. ***

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
--- You are receiving this mail because: ---


[Issue 1692] Abstract class dynamic creation bug

2011-07-01 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=1692


yebblies yebbl...@gmail.com changed:

   What|Removed |Added

   Keywords||patch
 CC||yebbl...@gmail.com
  Component|DMD |druntime
   Platform|x86 |All
 OS/Version|Windows |All


--- Comment #3 from yebblies yebbl...@gmail.com 2011-07-01 19:57:29 EST ---
The bug is primarily in druntime, but requires a dmd change to pass more
information along.

https://github.com/D-Programming-Language/dmd/pull/186
https://github.com/D-Programming-Language/druntime/pull/34

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
--- You are receiving this mail because: ---


[Issue 1692] Abstract class dynamic creation bug

2009-04-23 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=1692





--- Comment #2 from g...@nwawudu.com  2009-04-23 05:01 ---
Added example from Bug 2453.

abstract class C {
}

void main()
{
auto c = cast(C)C.classinfo.create();
assert(c is null); // should pass or classinfo.create should throw an
exception
}


-- 



[Issue 1692] Abstract class dynamic creation bug

2008-11-25 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=1692


[EMAIL PROTECTED] changed:

   What|Removed |Added

 CC||[EMAIL PROTECTED]




--- Comment #1 from [EMAIL PROTECTED]  2008-11-25 08:06 ---
*** Bug 2453 has been marked as a duplicate of this bug. ***


--