]> git.lizzy.rs Git - rust.git/blob - tests/ui/proc-macro/attr-stmt-expr.stderr
Rollup merge of #107470 - kadiwa4:bootstrap_cleanup, r=albertlarsan68
[rust.git] / tests / ui / proc-macro / attr-stmt-expr.stderr
1 error[E0658]: attributes on expressions are experimental
2   --> $DIR/attr-stmt-expr.rs:24:5
3    |
4 LL |     #[expect_my_macro_expr]
5    |     ^^^^^^^^^^^^^^^^^^^^^^^
6    |
7    = note: see issue #15701 <https://github.com/rust-lang/rust/issues/15701> for more information
8    = help: add `#![feature(stmt_expr_attributes)]` to the crate attributes to enable
9
10 error[E0658]: attributes on expressions are experimental
11   --> $DIR/attr-stmt-expr.rs:62:5
12    |
13 LL |     #[expect_expr]
14    |     ^^^^^^^^^^^^^^
15    |
16    = note: see issue #15701 <https://github.com/rust-lang/rust/issues/15701> for more information
17    = help: add `#![feature(stmt_expr_attributes)]` to the crate attributes to enable
18
19 error: aborting due to 2 previous errors
20
21 For more information about this error, try `rustc --explain E0658`.