summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/create_dir.stderr
blob: ab51705bb55a5b44c09b03823f6bf067dc0da331 (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
error: calling `std::fs::create_dir` where there may be a better way
  --> tests/ui/create_dir.rs:10:5
   |
LL |     std::fs::create_dir("foo");
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = note: `-D clippy::create-dir` implied by `-D warnings`
   = help: to override `-D warnings` add `#[allow(clippy::create_dir)]`
help: consider calling `std::fs::create_dir_all` instead
   |
LL |     create_dir_all("foo");
   |     ~~~~~~~~~~~~~~~~~~~~~

error: calling `std::fs::create_dir` where there may be a better way
  --> tests/ui/create_dir.rs:11:5
   |
LL |     std::fs::create_dir("bar").unwrap();
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
help: consider calling `std::fs::create_dir_all` instead
   |
LL |     create_dir_all("bar").unwrap();
   |     ~~~~~~~~~~~~~~~~~~~~~

error: aborting due to 2 previous errors