2021-10-09 13:13:15 +01:00
|
|
|
error: `bench` attribute cannot be used at crate level
|
|
|
|
--> $DIR/issue-43106-gating-of-bench.rs:7:1
|
|
|
|
|
|
|
|
|
LL | #![bench = "4100"]
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2024-01-27 19:09:55 +08:00
|
|
|
LL |
|
2023-10-18 00:24:21 +00:00
|
|
|
LL | fn main() {}
|
|
|
|
| ---- the inner attribute doesn't annotate this function
|
2021-10-09 13:13:15 +01:00
|
|
|
|
|
|
|
|
help: perhaps you meant to use an outer attribute
|
|
|
|
|
|
2023-10-18 00:24:21 +00:00
|
|
|
LL - #![bench = "4100"]
|
|
|
|
LL + #[bench = "4100"]
|
2021-10-09 13:13:15 +01:00
|
|
|
|
|
|
|
|
|
2024-01-27 19:09:55 +08:00
|
|
|
error: aborting due to 1 previous error
|
2017-12-06 09:27:47 +01:00
|
|
|
|