[Issue 2884] ICE: Assert: 'template.c', line 3773, 'global.errors'

2014-04-18 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=2884

Walter Bright  changed:

   What|Removed |Added

Version|1.041   |D1

--


[Issue 2884] ICE: Assert: 'template.c', line 3773, 'global.errors'

2009-07-09 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=2884


Walter Bright  changed:

   What|Removed |Added

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




--- Comment #4 from Walter Bright   2009-07-09 
02:48:11 PDT ---
Fixed dmd 1.046 and 2.031

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


[Issue 2884] ICE: Assert: 'template.c', line 3773, 'global.errors'

2009-05-14 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=2884


Don  changed:

   What|Removed |Added

 CC||clugd...@yahoo.com.au




--- Comment #3 from Don   2009-05-14 05:14:21 PDT ---
This code from issue 884 (exactly 2000 bugs earlier) creates the same ICE error
message.
It may or may not be a duplicate; I'm putting it here so that 884 can be
closed.
--
template Inner(Ts...) {
const Inner = .Inner!((Ts));
}
auto x = Inner!();

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


[Issue 2884] ICE: Assert: 'template.c', line 3773, 'global.errors'

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





--- Comment #2 from clugd...@yahoo.com.au  2009-04-24 03:13 ---
The original test case isn't actually valid, here's a slightly longer example
which is valid. Fails on D2.029 as well.
---
template Foo( T )  { alias int Foo;}
Foo!(typeof(bar)) x;
void bar() { }


-- 



[Issue 2884] ICE: Assert: 'template.c', line 3773, 'global.errors'

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


clugd...@yahoo.com.au changed:

   What|Removed |Added

 CC||pelek...@gmail.com




--- Comment #1 from clugd...@yahoo.com.au  2009-04-24 03:08 ---
*** Bug 2253 has been marked as a duplicate of this bug. ***


--