]> git.proxmox.com Git - rustc.git/blame - src/librustc_error_codes/error_codes/E0551.md
New upstream version 1.47.0+dfsg1
[rustc.git] / src / librustc_error_codes / error_codes / E0551.md
CommitLineData
60c5eb7d
XL
1An invalid meta-item was used inside an attribute.
2
3Erroneous code example:
4
5```compile_fail,E0551
6#[deprecated(note)] // error!
7fn i_am_deprecated() {}
8```
9
10Meta items are the key-value pairs inside of an attribute. To fix this issue,
11you need to give a value to the `note` key. Example:
12
13```
14#[deprecated(note = "because")] // ok!
15fn i_am_deprecated() {}
16```