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

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

15 lines
251 B
Plaintext
Raw Normal View History

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]
LL + #[test]
|
error: aborting due to 1 previous error
2018-10-04 19:49:29 +00:00