[Issue 6326] New: [CTFE] ICE on cross-module call of function checking CTFE-ability of function with invalid switch statement
d-bugmail at puremagic.com
d-bugmail at puremagic.com
Fri Jul 15 10:45:31 PDT 2011
http://d.puremagic.com/issues/show_bug.cgi?id=6326
Summary: [CTFE] ICE on cross-module call of function checking
CTFE-ability of function with invalid switch statement
Product: D
Version: D2
Platform: Other
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: DMD
AssignedTo: nobody at puremagic.com
ReportedBy: timon.gehr at gmx.ch
--- Comment #0 from timon.gehr at gmx.ch 2011-07-15 10:40:19 PDT ---
Tested with DMD 2.053.
Took me some time to reduce this:
A.d:
import B;
void main(){foo();}
B.d
int bar(){switch(0){};} // any switch statement that does not compile will do.
auto foo(){static if(__traits(compiles,{enum x=bar();})){}}
This code provokes an internal compiler error:
$ dmd A B
dmd: statement.c:2758: virtual Statement* SwitchStatement::semantic(Scope*):
Assertion `!cases' failed.
Aborted
--
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
More information about the Digitalmars-d-bugs
mailing list