http://d.puremagic.com/issues/show_bug.cgi?id=3192
Summary: asm in a anonymous delegate crash the compiler
Product: D
Version: 1.046
Platform: All
OS/Version: All
Status: NEW
Severity: blocker
Priority: P2
Component: DMD
AssignedTo: [email protected]
ReportedBy: [email protected]
below lines crash dmd 1.046/2.031 on linux and window platfrom:
void func (void delegate () callback) {
callback();
}
void main () {
func(() { asm{ int 3; }; });
}
--
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------