September 25
https://issues.dlang.org/show_bug.cgi?id=24784

          Issue ID: 24784
           Summary: Error on first lambda parameter with default with type
                    inference
           Product: D
           Version: D2
          Hardware: All
                OS: All
            Status: NEW
          Severity: normal
          Priority: P1
         Component: dmd
          Assignee: nobody@puremagic.com
          Reporter: qs.il.paperinik@gmail.com

Example:
```d
alias fp = (x = 0) { }; // Error: undefined identifier `x`
```

--