]> git.lizzy.rs Git - rust.git/blob - src/test/ui/stability-attribute/stability-attribute-sanity-2.stderr
Rollup merge of #87941 - GuillaumeGomez:fix-rustdoc-js-tool, r=notriddle
[rust.git] / src / test / ui / stability-attribute / stability-attribute-sanity-2.stderr
1 error[E0538]: multiple 'feature' items
2   --> $DIR/stability-attribute-sanity-2.rs:7:25
3    |
4 LL | #[stable(feature = "a", feature = "b", since = "1.0.0")]
5    |                         ^^^^^^^^^^^^^
6
7 error[E0541]: unknown meta item 'sinse'
8   --> $DIR/stability-attribute-sanity-2.rs:10:25
9    |
10 LL | #[stable(feature = "a", sinse = "1.0.0")]
11    |                         ^^^^^^^^^^^^^^^ expected one of `since`, `note`
12
13 error[E0545]: `issue` must be a non-zero numeric string or "none"
14   --> $DIR/stability-attribute-sanity-2.rs:13:27
15    |
16 LL | #[unstable(feature = "a", issue = "no")]
17    |                           ^^^^^^^^----
18    |                                   |
19    |                                   invalid digit found in string
20
21 error: aborting due to 3 previous errors
22
23 Some errors have detailed explanations: E0538, E0541, E0545.
24 For more information about an error, try `rustc --explain E0538`.