]> git.lizzy.rs Git - rust.git/blob - src/test/ui/tool-attributes/tool-attributes-misplaced-1.stderr
Merge commit 'a8385522ade6f67853edac730b5bf164ddb298fd' into simd-remove-autosplats
[rust.git] / src / test / ui / tool-attributes / tool-attributes-misplaced-1.stderr
1 error: cannot find derive macro `rustfmt` in this scope
2   --> $DIR/tool-attributes-misplaced-1.rs:4:10
3    |
4 LL | #[derive(rustfmt)]
5    |          ^^^^^^^
6
7 error: cannot find derive macro `rustfmt` in this scope
8   --> $DIR/tool-attributes-misplaced-1.rs:4:10
9    |
10 LL | #[derive(rustfmt)]
11    |          ^^^^^^^
12
13 error: cannot find attribute `rustfmt` in this scope
14   --> $DIR/tool-attributes-misplaced-1.rs:9:3
15    |
16 LL | #[rustfmt]
17    |   ^^^^^^^
18
19 error: cannot find macro `rustfmt` in this scope
20   --> $DIR/tool-attributes-misplaced-1.rs:15:5
21    |
22 LL |     rustfmt!();
23    |     ^^^^^^^
24
25 error[E0573]: expected type, found tool module `rustfmt`
26   --> $DIR/tool-attributes-misplaced-1.rs:1:10
27    |
28 LL | type A = rustfmt;
29    |          ^^^^^^^ not a type
30
31 error[E0573]: expected type, found tool attribute `rustfmt::skip`
32   --> $DIR/tool-attributes-misplaced-1.rs:2:10
33    |
34 LL | type B = rustfmt::skip;
35    |          ^^^^^^^^^^^^^ not a type
36
37 error[E0423]: expected value, found tool module `rustfmt`
38   --> $DIR/tool-attributes-misplaced-1.rs:14:5
39    |
40 LL |     rustfmt;
41    |     ^^^^^^^ not a value
42
43 error[E0423]: expected value, found tool attribute `rustfmt::skip`
44   --> $DIR/tool-attributes-misplaced-1.rs:17:5
45    |
46 LL |     rustfmt::skip;
47    |     ^^^^^^^^^^^^^ not a value
48
49 error: aborting due to 8 previous errors
50
51 Some errors have detailed explanations: E0423, E0573.
52 For more information about an error, try `rustc --explain E0423`.