http://d.puremagic.com/issues/show_bug.cgi?id=7277
Summary: [CTFE ICE] Assertion failure: 'thisval' on line 1690
in file 'interpret.c'
Product: D
Version: D2
Platform: Other
OS/Version: Windows
Status: NEW
Keywords: ice-on-valid-code
Severity: normal
Priority: P2
Component: DMD
AssignedTo: [email protected]
ReportedBy: [email protected]
--- Comment #0 from Nick Sabalausky <[email protected]> 2012-01-12
00:22:36 PST ---
struct Foo
{
int a;
int func()
{
void nested()
{
a = 1;
}
nested();
return 1;
}
}
enum x = Foo().func();
--
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------