Skip to content

Commit

Permalink
Rollup merge of rust-lang#51510 - Havvy:diagnostic-list, r=GuillaumeG…
Browse files Browse the repository at this point in the history
…omez

Long diagnostic for E0538

r? @GuillaumeGomez
  • Loading branch information
Mark-Simulacrum authored Jun 12, 2018
2 parents 1e06b17 + e9e0ca0 commit 398e570
Showing 1 changed file with 30 additions and 1 deletion.
31 changes: 30 additions & 1 deletion src/libsyntax/diagnostic_list.rs
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,36 @@ For more information about the cfg attribute, read:
https://doc.rust-lang.org/reference.html#conditional-compilation
"##,

E0538: r##"
Attribute contains same meta item more than once.
Erroneous code example:
```compile_fail,E0538
#[deprecated(
since="1.0.0",
note="First deprecation note.",
note="Second deprecation note." // error: multiple same meta item
)]
fn deprecated_function() {}
```
Meta items are the key-value pairs inside of an attribute. Each key may only be
used once in each attribute.
To fix the problem, remove all but one of the meta items with the same key.
Example:
```
#[deprecated(
since="1.0.0",
note="First deprecation note."
)]
fn deprecated_function() {}
```
"##,

E0541: r##"
An unknown meta item was used.
Expand Down Expand Up @@ -347,7 +377,6 @@ and likely to change in the future.
}

register_diagnostics! {
E0538, // multiple [same] items
E0539, // incorrect meta item
E0540, // multiple rustc_deprecated attributes
E0542, // missing 'since'
Expand Down

0 comments on commit 398e570

Please sign in to comment.