https://issues.dlang.org/show_bug.cgi?id=22570

          Issue ID: 22570
           Summary: more arguments than fields allowed in struct
                    constructor
           Product: D
           Version: D2
          Hardware: x86_64
                OS: Linux
            Status: NEW
          Severity: regression
          Priority: P1
         Component: dmd
          Assignee: nob...@puremagic.com
          Reporter: b2.t...@gmx.com

## test case

```
struct S
{
    Object o1;
}

void main() @safe
{
    S[] s;
    s = [S(null, null)];
    s ~= S(null, null);
} 
```

## notes

Regression from 2.087 according to run.dlang.io

--

Reply via email to