http://d.puremagic.com/issues/show_bug.cgi?id=8602
Don <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|Assertion failure |ICE(mtype.c) string mixin + | |auto return type + template | |tuple --- Comment #2 from Don <[email protected]> 2012-11-26 07:44:06 PST --- Very marginally simplified. If you take out the "if (func.length == 1)" then it segfaults instead. ------------- template ReturnType(func...) if (func.length == 1) { } struct MyClass { auto xopBinary(T)() { } } struct BinaryOperatorX() { ReturnType!(mixin("MyClass.xopBinary!(int)")) RET_T; } void PydMain() { BinaryOperatorX!(); } -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
