]> git.lizzy.rs Git - rust.git/blob - src/test/ui/stability-attribute/stability-attribute-sanity-2.stderr
Auto merge of #62748 - luca-barbieri:optimize-refcell-borrow, r=RalfJung
[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]: incorrect 'issue'
14   --> $DIR/stability-attribute-sanity-2.rs:13:1
15    |
16 LL | #[unstable(feature = "a", issue = "no")]
17    | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
18
19 error: aborting due to 3 previous errors
20
21 Some errors have detailed explanations: E0538, E0541.
22 For more information about an error, try `rustc --explain E0538`.