]> git.proxmox.com Git - rustc.git/blame - src/test/ui/stability-attribute/stability-attribute-sanity-2.stderr
New upstream version 1.64.0+dfsg1
[rustc.git] / src / test / ui / stability-attribute / stability-attribute-sanity-2.stderr
CommitLineData
b7449926 1error[E0538]: multiple 'feature' items
0731742a 2 --> $DIR/stability-attribute-sanity-2.rs:7:25
b7449926 3 |
532ac7d7 4LL | #[stable(feature = "a", feature = "b", since = "1.0.0")]
b7449926
XL
5 | ^^^^^^^^^^^^^
6
7error[E0541]: unknown meta item 'sinse'
0731742a 8 --> $DIR/stability-attribute-sanity-2.rs:10:25
b7449926 9 |
532ac7d7 10LL | #[stable(feature = "a", sinse = "1.0.0")]
064997fb 11 | ^^^^^^^^^^^^^^^ expected one of `feature`, `since`
b7449926 12
74b04a01
XL
13error[E0545]: `issue` must be a non-zero numeric string or "none"
14 --> $DIR/stability-attribute-sanity-2.rs:13:27
b7449926 15 |
532ac7d7 16LL | #[unstable(feature = "a", issue = "no")]
74b04a01
XL
17 | ^^^^^^^^----
18 | |
19 | invalid digit found in string
b7449926
XL
20
21error: aborting due to 3 previous errors
22
6a06907d 23Some errors have detailed explanations: E0538, E0541, E0545.
b7449926 24For more information about an error, try `rustc --explain E0538`.