]> git.lizzy.rs Git - rust.git/blob - tests/ui/macros/builtin-std-paths-fail.stderr
Rollup merge of #106931 - Ezrashaw:docs-e0208, r=compiler-errors
[rust.git] / tests / ui / macros / builtin-std-paths-fail.stderr
1 error[E0433]: failed to resolve: could not find `RustcDecodable` in `core`
2   --> $DIR/builtin-std-paths-fail.rs:2:11
3    |
4 LL |     core::RustcDecodable,
5    |           ^^^^^^^^^^^^^^ could not find `RustcDecodable` in `core`
6
7 error[E0433]: failed to resolve: could not find `RustcDecodable` in `core`
8   --> $DIR/builtin-std-paths-fail.rs:4:11
9    |
10 LL |     core::RustcDecodable,
11    |           ^^^^^^^^^^^^^^ could not find `RustcDecodable` in `core`
12
13 error[E0433]: failed to resolve: could not find `RustcDecodable` in `core`
14   --> $DIR/builtin-std-paths-fail.rs:2:11
15    |
16 LL |     core::RustcDecodable,
17    |           ^^^^^^^^^^^^^^ could not find `RustcDecodable` in `core`
18
19 error[E0433]: failed to resolve: could not find `RustcDecodable` in `core`
20   --> $DIR/builtin-std-paths-fail.rs:4:11
21    |
22 LL |     core::RustcDecodable,
23    |           ^^^^^^^^^^^^^^ could not find `RustcDecodable` in `core`
24
25 error[E0433]: failed to resolve: could not find `bench` in `core`
26   --> $DIR/builtin-std-paths-fail.rs:7:9
27    |
28 LL | #[core::bench]
29    |         ^^^^^ could not find `bench` in `core`
30
31 error[E0433]: failed to resolve: could not find `global_allocator` in `core`
32   --> $DIR/builtin-std-paths-fail.rs:8:9
33    |
34 LL | #[core::global_allocator]
35    |         ^^^^^^^^^^^^^^^^ could not find `global_allocator` in `core`
36
37 error[E0433]: failed to resolve: could not find `test_case` in `core`
38   --> $DIR/builtin-std-paths-fail.rs:9:9
39    |
40 LL | #[core::test_case]
41    |         ^^^^^^^^^ could not find `test_case` in `core`
42
43 error[E0433]: failed to resolve: could not find `test` in `core`
44   --> $DIR/builtin-std-paths-fail.rs:10:9
45    |
46 LL | #[core::test]
47    |         ^^^^ could not find `test` in `core`
48
49 error[E0433]: failed to resolve: could not find `RustcDecodable` in `std`
50   --> $DIR/builtin-std-paths-fail.rs:14:10
51    |
52 LL |     std::RustcDecodable,
53    |          ^^^^^^^^^^^^^^ could not find `RustcDecodable` in `std`
54
55 error[E0433]: failed to resolve: could not find `RustcDecodable` in `std`
56   --> $DIR/builtin-std-paths-fail.rs:16:10
57    |
58 LL |     std::RustcDecodable,
59    |          ^^^^^^^^^^^^^^ could not find `RustcDecodable` in `std`
60
61 error[E0433]: failed to resolve: could not find `RustcDecodable` in `std`
62   --> $DIR/builtin-std-paths-fail.rs:14:10
63    |
64 LL |     std::RustcDecodable,
65    |          ^^^^^^^^^^^^^^ could not find `RustcDecodable` in `std`
66
67 error[E0433]: failed to resolve: could not find `RustcDecodable` in `std`
68   --> $DIR/builtin-std-paths-fail.rs:16:10
69    |
70 LL |     std::RustcDecodable,
71    |          ^^^^^^^^^^^^^^ could not find `RustcDecodable` in `std`
72
73 error[E0433]: failed to resolve: could not find `bench` in `std`
74   --> $DIR/builtin-std-paths-fail.rs:19:8
75    |
76 LL | #[std::bench]
77    |        ^^^^^ could not find `bench` in `std`
78
79 error[E0433]: failed to resolve: could not find `global_allocator` in `std`
80   --> $DIR/builtin-std-paths-fail.rs:20:8
81    |
82 LL | #[std::global_allocator]
83    |        ^^^^^^^^^^^^^^^^ could not find `global_allocator` in `std`
84
85 error[E0433]: failed to resolve: could not find `test_case` in `std`
86   --> $DIR/builtin-std-paths-fail.rs:21:8
87    |
88 LL | #[std::test_case]
89    |        ^^^^^^^^^ could not find `test_case` in `std`
90
91 error[E0433]: failed to resolve: could not find `test` in `std`
92   --> $DIR/builtin-std-paths-fail.rs:22:8
93    |
94 LL | #[std::test]
95    |        ^^^^ could not find `test` in `std`
96
97 error: aborting due to 16 previous errors
98
99 For more information about this error, try `rustc --explain E0433`.