https://issues.dlang.org/show_bug.cgi?id=17285
Issue ID: 17285
Summary: Segfault for invalid code (enum without value)
Product: D
Version: D2
Hardware: All
OS: All
Status: NEW
Severity: normal
Priority: P1
Component: dmd
Assignee: [email protected]
Reporter: [email protected]
Crashes with DMD 2.073.2 (but at least prints an error message before that):
enum SETTINGS_THEME_VARIANT_KEY;
void foo() {
foreach(key; [SETTINGS_THEME_VARIANT_KEY, 1]) {}
}
--
