]> git.lizzy.rs Git - rust.git/blob - src/tools/clippy/tests/ui-internal/invalid_paths.stderr
Rollup merge of #92242 - compiler-errors:layout-modulo-regions, r=matthewjasper
[rust.git] / src / tools / clippy / tests / ui-internal / invalid_paths.stderr
1 error: invalid path
2   --> $DIR/invalid_paths.rs:15:5
3    |
4 LL |     pub const TRANSMUTE: [&str; 4] = ["core", "intrinsics", "", "transmute"];
5    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
6    |
7    = note: `-D clippy::invalid-paths` implied by `-D warnings`
8
9 error: invalid path
10   --> $DIR/invalid_paths.rs:18:5
11    |
12 LL |     pub const BAD_CRATE_PATH: [&str; 2] = ["bad", "path"];
13    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
14
15 error: invalid path
16   --> $DIR/invalid_paths.rs:21:5
17    |
18 LL |     pub const BAD_MOD_PATH: [&str; 2] = ["std", "xxx"];
19    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
20
21 error: aborting due to 3 previous errors
22