2019-06-20 03:52:31 -05:00
|
|
|
error: cannot determine resolution for the attribute macro `test`
|
2020-11-12 14:42:42 -06:00
|
|
|
--> $DIR/issue-43106-gating-of-test.rs:4:4
|
2019-07-18 18:10:36 -05:00
|
|
|
|
|
|
|
|
LL | #![test = "4200"]
|
2019-06-20 03:52:31 -05:00
|
|
|
| ^^^^
|
2019-07-19 19:14:11 -05:00
|
|
|
|
|
2019-06-20 03:52:31 -05:00
|
|
|
= note: import resolution is stuck, try simplifying macro imports
|
2017-12-06 02:27:47 -06:00
|
|
|
|
2021-10-09 07:13:15 -05:00
|
|
|
error: `test` attribute cannot be used at crate level
|
|
|
|
--> $DIR/issue-43106-gating-of-test.rs:4:1
|
|
|
|
|
|
|
|
|
LL | #![test = "4200"]
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
help: perhaps you meant to use an outer attribute
|
|
|
|
|
|
|
|
|
LL | #[test = "4200"]
|
|
|
|
|
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
2017-12-06 02:27:47 -06:00
|
|
|
|