mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
21 lines
529 B
Plaintext
21 lines
529 B
Plaintext
error: removing an expression is not supported in this position
|
|
--> $DIR/attr-empty-expr.rs:8:13
|
|
|
|
|
LL | let _ = #[test] 0;
|
|
| ^^^^^^^
|
|
|
|
error: removing an expression is not supported in this position
|
|
--> $DIR/attr-empty-expr.rs:9:13
|
|
|
|
|
LL | let _ = #[bench] 1;
|
|
| ^^^^^^^^
|
|
|
|
error: removing an expression is not supported in this position
|
|
--> $DIR/attr-empty-expr.rs:10:13
|
|
|
|
|
LL | let _ = #[test_case] 2;
|
|
| ^^^^^^^^^^^^
|
|
|
|
error: aborting due to 3 previous errors
|
|
|