]> git.lizzy.rs Git - rust.git/blob - tests/ui/imports/issue-28134.stderr
Rollup merge of #106958 - jyn514:labels, r=m-ou-se
[rust.git] / tests / ui / imports / issue-28134.stderr
1 error: cannot determine resolution for the attribute macro `test`
2   --> $DIR/issue-28134.rs:4:4
3    |
4 LL | #![test]
5    |    ^^^^
6    |
7    = note: import resolution is stuck, try simplifying macro imports
8
9 error: `test` attribute cannot be used at crate level
10   --> $DIR/issue-28134.rs:4:1
11    |
12 LL | #![test]
13    | ^^^^^^^^
14    |
15 help: perhaps you meant to use an outer attribute
16    |
17 LL | #[test]
18    | ~~~~~~~
19
20 error: aborting due to 2 previous errors
21