```
error[E0610]: `{integer}` is a primitive type and therefore doesn't have fields
--> $DIR/attempted-access-non-fatal.rs:7:15
|
LL | let _ = 2.l;
| ^
|
help: if intended to be a floating point literal, consider adding a `0` after the period and a `f64` suffix
|
LL - let _ = 2.l;
LL + let _ = 2.0f64;
|
```
28 lines
847 B
Text
28 lines
847 B
Text
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 - std::fs::create_dir("foo");
|
|
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 - std::fs::create_dir("bar").unwrap();
|
|
LL + create_dir_all("bar").unwrap();
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|