Add long explanation for E0498

This commit is contained in:
Chris Midgley
2021-07-27 18:06:34 +01:00
parent 3bc9dd0dd2
commit 7f563f7f4e
4 changed files with 25 additions and 1 deletions

View File

@@ -0,0 +1,22 @@
The `plugin` attribute was malformed.
Erroneous code example:
```compile_fail,E0498
#![feature(plugin)]
#![plugin(foo(args))] // error: invalid argument
#![plugin(bar="test")] // error: invalid argument
```
The `#[plugin]` attribute should take a single argument: the name of the plugin.
For example, for the plugin `foo`:
```
#![feature(plugin)]
#![plugin(foo)] // ok!
```
See the [`plugin` feature] section of the Unstable book for more details.
[`plugin` feature]: https://doc.rust-lang.org/nightly/unstable-book/language-features/plugin.html