mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-28 09:44:08 +00:00
18 lines
765 B
Plaintext
18 lines
765 B
Plaintext
warning: attribute must be of the form `#[bench]`
|
|
--> $DIR/issue-43106-gating-of-bench.rs:15:1
|
|
|
|
|
LL | #![bench = "4100"]
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
= note: `#[warn(ill_formed_attribute_input)]` on by default
|
|
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
|
|
= note: for more information, see issue #57571 <https://github.com/rust-lang/rust/issues/57571>
|
|
|
|
error[E0601]: `main` function not found in crate `issue_43106_gating_of_bench`
|
|
|
|
|
= note: consider adding a `main` function to `$DIR/issue-43106-gating-of-bench.rs`
|
|
|
|
error: aborting due to previous error
|
|
|
|
For more information about this error, try `rustc --explain E0601`.
|