[Issue 6710] New: Can't use .sizeof in pragma(msg) call
d-bugmail at puremagic.com
d-bugmail at puremagic.com
Wed Sep 21 20:50:32 PDT 2011
http://d.puremagic.com/issues/show_bug.cgi?id=6710
Summary: Can't use .sizeof in pragma(msg) call
Product: D
Version: D2
Platform: Other
OS/Version: Windows
Status: NEW
Severity: normal
Priority: P2
Component: DMD
AssignedTo: nobody at puremagic.com
ReportedBy: andrej.mitrovich at gmail.com
--- Comment #0 from Andrej Mitrovic <andrej.mitrovich at gmail.com> 2011-09-21 20:50:04 PDT ---
struct Foo
{
static assert(Foo.sizeof == 4); // ok
pragma(msg, Foo.sizeof); // Error: struct test.Foo no size yet for forward
reference
int x;
}
void main() { }
I'm not sure if it's genuinely a bug, IOW maybe the pragma is evaluated before
the compiler does a pass to see which fields the struct is holding?
--
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