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:17:28 9 | 1017 | #[linkme(crate = path::to::missing)] 11 | ^^^^^^^ could not find `missing` in `to` 12 13error[E0433]: failed to resolve: could not find `missing` in `to` 14 --> tests/ui/bad_crate_path.rs:10:28 15 | 1610 | #[linkme(crate = path::to::missing)] 17 | ^^^^^^^ could not find `missing` in `to` 18 | 19help: consider importing this struct 20 | 213 + use linkme::DistributedSlice; 22 | 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