https://issues.dlang.org/show_bug.cgi?id=17074
Issue ID: 17074
Summary: extern(C++, keyword) crashes compiler
Product: D
Version: D2
Hardware: All
OS: All
Status: NEW
Severity: regression
Priority: P1
Component: dmd
Assignee: [email protected]
Reporter: [email protected]
Some random examples, just to show that any tokenized keyword can trigger it.
extern(C++, cast) void crash();
extern(C++, __parameters) void crash();
extern(C++, __MODULE__) void crash();
extern(C++, macro) void crash();
extern(C++, ...) void crash();
--