• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1error[E0433]: failed to resolve: could not find `missing` in `to`
2  --> tests/ui/bad_crate_path.rs:10:28
3   |
410 | #[linkme(crate = path::to::missing)]
5   |                            ^^^^^^^ could not find `missing` in `to`
6
7error[E0433]: failed to resolve: could not find `missing` in `to`
8  --> tests/ui/bad_crate_path.rs:10:28
9   |
1010 | #[linkme(crate = path::to::missing)]
11   |                            ^^^^^^^ could not find `missing` in `to`
12   |
13help: consider importing this struct
14   |
153  + use linkme::DistributedSlice;
16   |
17
18error[E0433]: failed to resolve: could not find `missing` in `to`
19  --> tests/ui/bad_crate_path.rs:17:28
20   |
2117 | #[linkme(crate = path::to::missing)]
22   |                            ^^^^^^^ could not find `missing` in `to`
23
24error[E0433]: failed to resolve: could not find `missing` in `to`
25  --> tests/ui/bad_crate_path.rs:17:28
26   |
2717 | #[linkme(crate = path::to::missing)]
28   |                            ^^^^^^^ could not find `missing` in `to`
29   |
30help: consider importing this struct
31   |
323  + use linkme::DistributedSlice;
33   |
34