mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
17 lines
467 B
Text
17 lines
467 B
Text
error: `bench` attribute cannot be used at crate level
|
|
--> $DIR/issue-43106-gating-of-bench.rs:7:1
|
|
|
|
|
LL | #![bench = "4100"]
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
LL |
|
|
LL | fn main() {}
|
|
| ---- the inner attribute doesn't annotate this function
|
|
|
|
|
help: perhaps you meant to use an outer attribute
|
|
|
|
|
LL - #![bench = "4100"]
|
|
LL + #[bench = "4100"]
|
|
|
|
|
|
|
error: aborting due to 1 previous error
|
|
|