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

Bolpat <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |[email protected]

--- Comment #2 from Bolpat <[email protected]> ---
Alias doesn’t support prefix attributes this way.
```d
alias a = @trusted void function();
```

You have to write:
```d
@trusted alias a = void function();
```
If you want prefix syntax. Annoying.

My bet is this is from the alias Blabla x days, because this works:
```d
@trusted alias void function() a;
```

--

Reply via email to