2019-06-20 08:52:31 +00:00
|
|
|
error: cannot determine resolution for the attribute macro `test`
|
2020-11-12 20:42:42 +00:00
|
|
|
--> $DIR/issue-28134.rs:4:4
|
2018-10-04 19:49:29 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | #![test]
|
2019-06-20 08:52:31 +00:00
|
|
|
| ^^^^
|
|
|
|
|
|
|
|
|
= note: import resolution is stuck, try simplifying macro imports
|
2018-10-04 19:49:29 +00:00
|
|
|
|
2021-10-09 12:13:15 +00:00
|
|
|
error: `test` attribute cannot be used at crate level
|
|
|
|
--> $DIR/issue-28134.rs:4:1
|
|
|
|
|
|
|
|
|
LL | #![test]
|
|
|
|
| ^^^^^^^^
|
|
|
|
|
|
|
|
|
help: perhaps you meant to use an outer attribute
|
|
|
|
|
|
|
|
|
LL | #[test]
|
|
|
|
| ~~~~~~~
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
2018-10-04 19:49:29 +00:00
|
|
|
|