Bug 18459 – The static array ABI doesn't match the struct ABI
Status
RESOLVED
Resolution
FIXED
Severity
normal
Priority
P1
Component
dmd
Product
D
Version
D2
Platform
All
OS
All
Creation time
2018-02-18T22:28:04Z
Last change time
2018-03-31T06:52:40Z
Assigned to
No Owner
Creator
Walter Bright
Comments
Comment #0 by bugzilla — 2018-02-18T22:28:04Z
Although it is supposed to. For example,
int[3];
struct S { int a,b,c; }
struct T { int[3] a; }
should all be the same when being passed/returned to/from functions.