Comment #0 by pro.mathias.lang — 2021-09-28T01:14:14Z
```
@string @int
void main () {}
```
Returns:
```
onlineapp.d(1,10): Error: `@identifier` or `@(ArgumentList)` expected, not `@int`
onlineapp.d(2,1): Error: no identifier for declarator `int`
dmd failed with exit code 1.
```
However the following compiles just fine:
```
alias SillyParser = int;
@string @SillyParser
void main ()
{
}
```
Tested with DMD v2.097.2