blob: 912c2746f3835e4d059e147b9ef7fc4e263a1b37 [file] [log] [blame]
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