http://d.puremagic.com/issues/show_bug.cgi?id=6896
David Simcha <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #1 from David Simcha <[email protected]> 2011-12-08 16:21:41 PST --- Here's another way to reproduce the same failure: int expression( string op, Lhs, Rhs ) ( auto ref Lhs lhs, auto ref Rhs rhs ) { return 0; } struct BasicMatrix( Storage_ ) { auto opBinary( string op, NewRhs )( auto ref NewRhs newRhs ) { alias this thisConverted; return expression!op( thisConverted, newRhs ); } } void ridgeLargeP() { BasicMatrix!double cwc; auto foo = cwc * cwc; } -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
