[Issue 3620] New: Address of member of global struct isn't constant
d-bugmail at puremagic.com
d-bugmail at puremagic.com
Wed Dec 16 07:10:49 PST 2009
http://d.puremagic.com/issues/show_bug.cgi?id=3620
Summary: Address of member of global struct isn't constant
Product: D
Version: 1.051
Platform: All
OS/Version: All
Status: NEW
Severity: normal
Priority: P2
Component: DMD
AssignedTo: nobody at puremagic.com
ReportedBy: default_357-line at yahoo.de
--- Comment #0 from downs <default_357-line at yahoo.de> 2009-12-16 07:10:47 PST ---
Created an attachment (id=524)
Make address of member of global struct constant
When taking the address of a member of a global struct, as in
struct S { int x; }
S s;
const int* p = &s.x;
The above fails on 1.051 with "Error: non-constant expression &s.x"
The attached patch fixes this.
--
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