Subject: | Future::AsyncAwait does not work with "-async" word |
The following code works:
```
use strict;
use warnings;
sub foo { warn "[@_]\n" }
foo -async;
```
But, if I add "use Future::AsyncAwait", it won't work.
That is,
```
use strict;
use warnings;
use Future::AsyncAwait;
sub foo { warn "[@_]\n" }
foo -async;
```
does not work:
```
❯ perl test.pl
Expected async to be followed by sub at test.pl line 7.
```
P.S. I originally found this with Mojolicious https://github.com/mojolicious/mojo/issues/1461