diff options
| author | bors <bors@rust-lang.org> | 2019-10-08 17:31:35 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2019-10-08 17:31:35 +0000 |
| commit | 2748a9fd93dd1a00a4521f4f16de5befbf77f6cd (patch) | |
| tree | d889f76e88e1ab000a0b64d9337868d8deeeccb3 /src/libsyntax | |
| parent | 3fa9554d77960627cb2c983470bceacfeeb486b0 (diff) | |
| parent | 3246ab2427494abb59ecf3718f4dec83a0de406e (diff) | |
| download | rust-2748a9fd93dd1a00a4521f4f16de5befbf77f6cd.tar.gz rust-2748a9fd93dd1a00a4521f4f16de5befbf77f6cd.zip | |
Auto merge of #65209 - Centril:rollup-tzc0j87, r=Centril
Rollup of 8 pull requests Successful merges: - #64404 (Add long error explanation for E0495) - #64918 (Add long error explanation for E0551) - #65102 (Disable stack probe when thread sanitizer is enabled) - #65120 (Correctly estimate the required space for string in `StyledBuffer::prepend`) - #65145 (When suggesting assoc function with type params, include turbofish) - #65162 (Remove loaded_from_cache map from DepGraph) - #65176 (Remove query-related macros) - #65179 (Add long error explanation for E0567) Failed merges: r? @ghost
Diffstat (limited to 'src/libsyntax')
| -rw-r--r-- | src/libsyntax/error_codes.rs | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/src/libsyntax/error_codes.rs b/src/libsyntax/error_codes.rs index c0963026945..fc3f095856a 100644 --- a/src/libsyntax/error_codes.rs +++ b/src/libsyntax/error_codes.rs @@ -163,6 +163,25 @@ fn the_banished() {} // ok! ``` "##, +E0551: r##" +An invalid meta-item was used inside an attribute. + +Erroneous code example: + +```compile_fail,E0551 +#[deprecated(note)] // error! +fn i_am_deprecated() {} +``` + +Meta items are the key-value pairs inside of an attribute. To fix this issue, +you need to give a value to the `note` key. Example: + +``` +#[deprecated(note = "because")] // ok! +fn i_am_deprecated() {} +``` +"##, + E0552: r##" A unrecognized representation attribute was used. @@ -473,7 +492,6 @@ features in the `-Z allow_features` flag. // rustc_deprecated attribute must be paired with either stable or unstable // attribute E0549, - E0551, // incorrect meta item E0553, // multiple rustc_const_unstable attributes // E0555, // replaced with a generic attribute input check E0584, // file for module `..` found at both .. and .. |
