[Issue 4504] ICE(toir.c) nested function passed by alias to nested member function

2012-05-03 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4504 Don changed: What|Removed |Added Status|RESOLVED|REOPENED Version|D1 & D2

[Issue 4504] ICE(toir.c) nested function passed by alias to nested member function

2012-03-12 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4504 Walter Bright changed: What|Removed |Added Status|NEW |RESOLVED CC|

[Issue 4504] ICE(toir.c) nested function passed by alias to nested member function

2012-01-26 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4504 --- Comment #11 from bearophile_h...@eml.cc 2012-01-26 04:56:11 PST --- Same bug? import std.algorithm: map; void foo() { map!(x => x)([1]); } struct Bar { int opApply(int delegate(ref int) dg) { int result; foo();

[Issue 4504] ICE(toir.c) nested function passed by alias to nested member function

2012-01-26 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4504 --- Comment #10 from bearophile_h...@eml.cc 2012-01-26 04:54:36 PST --- Same bug? import std.algorithm: map; void foo() { map!(x => x)([1]); } void main() { int opApply(int delegate(ref int) dg) { int result; foo();

[Issue 4504] ICE(toir.c) nested function passed by alias to nested member function

2011-10-25 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4504 Don changed: What|Removed |Added Version|D2 |D1 & D2 Summary|ICE(toir.c) using