rust/tests/ui/imports/issue-28134.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
449 B
Plaintext
Raw Normal View History

error: cannot determine resolution for the attribute macro `test`
--> $DIR/issue-28134.rs:4:4
2018-10-04 19:49:29 +00:00
|
2019-03-09 12:03:44 +00:00
LL | #![test]
| ^^^^
|
= note: import resolution is stuck, try simplifying macro imports
2018-10-04 19:49:29 +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