summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/create_dir.stderr
blob: 67298fc47095c98144b7994fce1fc058ebed0cb6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
error: calling `std::fs::create_dir` where there may be a better way
  --> $DIR/create_dir.rs:11:5
   |
LL |     std::fs::create_dir("foo");
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider calling `std::fs::create_dir_all` instead: `create_dir_all("foo")`
   |
   = note: `-D clippy::create-dir` implied by `-D warnings`

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

error: aborting due to 2 previous errors