summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui-internal/invalid_paths.stderr
blob: 20aa81b98a080c1b01478d2466910e4ceb5c9a5c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
error: invalid path
  --> $DIR/invalid_paths.rs:17:5
   |
LL |     pub const BAD_CRATE_PATH: [&str; 2] = ["bad", "path"];
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = note: `-D clippy::invalid-paths` implied by `-D warnings`

error: invalid path
  --> $DIR/invalid_paths.rs:20:5
   |
LL |     pub const BAD_MOD_PATH: [&str; 2] = ["std", "xxx"];
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

error: aborting due to 2 previous errors