http://d.puremagic.com/issues/show_bug.cgi?id=5482
Summary: Crash with align(0)
Product: D
Version: D2
Platform: x86
OS/Version: Windows
Status: NEW
Severity: normal
Priority: P2
Component: DMD
AssignedTo: [email protected]
ReportedBy: [email protected]
--- Comment #0 from [email protected] 2011-01-25 02:59:10 PST ---
This crashes DMD 2.051:
align(0) struct Foo {
char c;
int i;
}
void main() {
Foo f = Foo();
}
---------------
This causes an Access Violation with DMD 2.051:
align(0) struct Foo {
int i, j;
}
void main() {
Foo f = Foo();
}
--
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------