2019-06-20 11:52:31 +03:00
|
|
|
error: cannot determine resolution for the attribute macro `test`
|
2020-11-12 23:42:42 +03:00
|
|
|
--> $DIR/issue-43106-gating-of-test.rs:4:4
|
2019-07-19 02:10:36 +03:00
|
|
|
|
|
|
|
|
LL | #![test = "4200"]
|
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: `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 09:27:47 +01:00
|
|
|
|