http://d.puremagic.com/issues/show_bug.cgi?id=9050
Andrej Mitrovic <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords|ice | CC| |[email protected] --- Comment #1 from Andrej Mitrovic <[email protected]> 2013-02-04 12:38:06 PST --- Test-case without requiring -unittest: struct A(T) {} struct B(T) { void f() { foo(A!int()); } } auto foo()(A!int base) pure { return B!int(); } auto l = foo(A!int()); void main() { } The crash is gone in 2.061 so this is no longer an ICE. Is the return type inference error expected? Otherwise close with WORKSFORME if this was only an ICE report. -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
