D issues are now tracked on GitHub. This Bugzilla instance remains as a read-only archive.
Issue 7193 - Regression(2.058head): ICE: delete lambda expression crashes dmd
Summary: Regression(2.058head): ICE: delete lambda expression crashes dmd
Status: RESOLVED FIXED
Alias: None
Product: D
Classification: Unclassified
Component: dmd (show other issues)
Version: D2
Hardware: All All
: P2 normal
Assignee: No Owner
URL:
Keywords: ice-on-invalid-code, patch
Depends on:
Blocks:
 
Reported: 2012-01-01 02:44 UTC by Kenji Hara
Modified: 2012-01-03 14:47 UTC (History)
1 user (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this issue.
Description Kenji Hara 2012-01-01 02:44:35 UTC
Following code crashes dmd.

void main()
{
    delete a => a;
}

Output:
test.d(5): Error: __lambda2 is not an lvalue
((crash))