summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/join_absolute_paths.stderr
blob: 0c2f89d9978b3a1dddfd609923f87644fc573a08 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
error: argument to `Path::join` starts with a path separator
  --> $DIR/join_absolute_paths.rs:10:15
   |
LL |     path.join("/sh");
   |               ^^^^^
   |
   = note: joining a path starting with separator will replace the path instead
   = note: `-D clippy::join-absolute-paths` implied by `-D warnings`
   = help: to override `-D warnings` add `#[allow(clippy::join_absolute_paths)]`
help: if this is unintentional, try removing the starting separator
   |
LL |     path.join("sh");
   |               ~~~~
help: if this is intentional, try using `Path::new` instead
   |
LL |     PathBuf::from("/sh");
   |     ~~~~~~~~~~~~~~~~~~~~

error: argument to `Path::join` starts with a path separator
  --> $DIR/join_absolute_paths.rs:14:15
   |
LL |     path.join("\\user");
   |               ^^^^^^^^
   |
   = note: joining a path starting with separator will replace the path instead
help: if this is unintentional, try removing the starting separator
   |
LL |     path.join("\user");
   |               ~~~~~~~
help: if this is intentional, try using `Path::new` instead
   |
LL |     PathBuf::from("\\user");
   |     ~~~~~~~~~~~~~~~~~~~~~~~

error: argument to `Path::join` starts with a path separator
  --> $DIR/join_absolute_paths.rs:18:15
   |
LL |     path.join("/sh");
   |               ^^^^^
   |
   = note: joining a path starting with separator will replace the path instead
help: if this is unintentional, try removing the starting separator
   |
LL |     path.join("sh");
   |               ~~~~
help: if this is intentional, try using `Path::new` instead
   |
LL |     PathBuf::from("/sh");
   |     ~~~~~~~~~~~~~~~~~~~~

error: argument to `Path::join` starts with a path separator
  --> $DIR/join_absolute_paths.rs:22:15
   |
LL |     path.join(r#"/sh"#);
   |               ^^^^^^^^
   |
   = note: joining a path starting with separator will replace the path instead
help: if this is unintentional, try removing the starting separator
   |
LL |     path.join(r#"sh"#);
   |               ~~~~~~~
help: if this is intentional, try using `Path::new` instead
   |
LL |     PathBuf::from(r#"/sh"#);
   |     ~~~~~~~~~~~~~~~~~~~~~~~

error: aborting due to 4 previous errors