]> git.lizzy.rs Git - rust.git/blob - src/test/ui/derives/issue-36617.stderr
Auto merge of #103894 - mati865:gnullvm-libunwind-changes, r=thomcc
[rust.git] / src / test / ui / derives / issue-36617.stderr
1 error: cannot determine resolution for the attribute macro `derive`
2   --> $DIR/issue-36617.rs:1:4
3    |
4 LL | #![derive(Copy)]
5    |    ^^^^^^
6    |
7    = note: import resolution is stuck, try simplifying macro imports
8
9 error: cannot determine resolution for the attribute macro `test`
10   --> $DIR/issue-36617.rs:4:4
11    |
12 LL | #![test]
13    |    ^^^^
14    |
15    = note: import resolution is stuck, try simplifying macro imports
16
17 error: cannot determine resolution for the attribute macro `test_case`
18   --> $DIR/issue-36617.rs:7:4
19    |
20 LL | #![test_case]
21    |    ^^^^^^^^^
22    |
23    = note: import resolution is stuck, try simplifying macro imports
24
25 error: cannot determine resolution for the attribute macro `bench`
26   --> $DIR/issue-36617.rs:10:4
27    |
28 LL | #![bench]
29    |    ^^^^^
30    |
31    = note: import resolution is stuck, try simplifying macro imports
32
33 error: cannot determine resolution for the attribute macro `global_allocator`
34   --> $DIR/issue-36617.rs:13:4
35    |
36 LL | #![global_allocator]
37    |    ^^^^^^^^^^^^^^^^
38    |
39    = note: import resolution is stuck, try simplifying macro imports
40
41 error: `derive` attribute cannot be used at crate level
42   --> $DIR/issue-36617.rs:1:1
43    |
44 LL | #![derive(Copy)]
45    | ^^^^^^^^^^^^^^^^
46    |
47 help: perhaps you meant to use an outer attribute
48    |
49 LL | #[derive(Copy)]
50    | ~~~~~~~~~~~~~~~
51
52 error: `test` attribute cannot be used at crate level
53   --> $DIR/issue-36617.rs:4:1
54    |
55 LL | #![test]
56    | ^^^^^^^^
57    |
58 help: perhaps you meant to use an outer attribute
59    |
60 LL | #[test]
61    | ~~~~~~~
62
63 error: `test_case` attribute cannot be used at crate level
64   --> $DIR/issue-36617.rs:7:1
65    |
66 LL | #![test_case]
67    | ^^^^^^^^^^^^^
68    |
69 help: perhaps you meant to use an outer attribute
70    |
71 LL | #[test_case]
72    | ~~~~~~~~~~~~
73
74 error: `bench` attribute cannot be used at crate level
75   --> $DIR/issue-36617.rs:10:1
76    |
77 LL | #![bench]
78    | ^^^^^^^^^
79    |
80 help: perhaps you meant to use an outer attribute
81    |
82 LL | #[bench]
83    | ~~~~~~~~
84
85 error: `global_allocator` attribute cannot be used at crate level
86   --> $DIR/issue-36617.rs:13:1
87    |
88 LL | #![global_allocator]
89    | ^^^^^^^^^^^^^^^^^^^^
90    |
91 help: perhaps you meant to use an outer attribute
92    |
93 LL | #[global_allocator]
94    | ~~~~~~~~~~~~~~~~~~~
95
96 error: aborting due to 10 previous errors
97