2019-06-20 11:52:31 +03:00
|
|
|
error: cannot determine resolution for the attribute macro `bench`
|
|
|
|
--> $DIR/issue-43106-gating-of-bench.rs:7:4
|
2019-07-19 02:10:36 +03:00
|
|
|
|
|
|
|
|
LL | #![bench = "4100"]
|
2019-06-20 11:52:31 +03:00
|
|
|
| ^^^^^
|
2019-07-20 03:14:11 +03:00
|
|
|
|
|
2019-06-20 11:52:31 +03:00
|
|
|
= note: import resolution is stuck, try simplifying macro imports
|
2017-12-06 09:27:47 +01:00
|
|
|
|
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"]
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
help: perhaps you meant to use an outer attribute
|
|
|
|
|
|
|
|
|
LL | #[bench = "4100"]
|
|
|
|
|
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
2017-12-06 09:27:47 +01:00
|
|
|
|