summaryrefslogtreecommitdiffstats
path: root/tests/ui/errors/remap-path-prefix-reverse.remapped-self.stderr
blob: 51e3b776cb2c08b91e283da11033cae05265eec3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
error[E0423]: expected value, found struct `remapped_dep::SomeStruct`
  --> $DIR/remap-path-prefix-reverse.rs:16:13
   |
LL |     let _ = remapped_dep::SomeStruct; // ~ERROR E0423
   |             ^^^^^^^^^^^^^^^^^^^^^^^^ help: use struct literal syntax instead: `remapped_dep::SomeStruct {}`
   |
  ::: remapped-aux/remapped_dep.rs:4:1
   |
LL | pub struct SomeStruct {} // This line should be show as part of the error.
   | --------------------- `remapped_dep::SomeStruct` defined here

error: aborting due to previous error

For more information about this error, try `rustc --explain E0423`.