2020-01-06 00:36:33 -06:00
|
|
|
error: file opened with `truncate` and `read`
|
2024-02-27 08:25:18 -06:00
|
|
|
--> tests/ui/open_options.rs:17:5
|
2018-10-06 11:18:06 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | OpenOptions::new().read(true).truncate(true).open("foo.txt");
|
2018-10-06 11:18:06 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= note: `-D clippy::nonsensical-open-options` implied by `-D warnings`
|
2023-08-01 07:02:21 -05:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::nonsensical_open_options)]`
|
2017-02-07 14:05:30 -06:00
|
|
|
|
2020-01-06 00:36:33 -06:00
|
|
|
error: file opened with `append` and `truncate`
|
2024-02-27 08:25:18 -06:00
|
|
|
--> tests/ui/open_options.rs:20:5
|
2018-10-06 11:18:06 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | OpenOptions::new().append(true).truncate(true).open("foo.txt");
|
2018-10-06 11:18:06 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2017-02-07 14:05:30 -06:00
|
|
|
|
2020-01-06 00:36:33 -06:00
|
|
|
error: the method `read` is called more than once
|
2024-02-27 08:25:18 -06:00
|
|
|
--> tests/ui/open_options.rs:23:35
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | OpenOptions::new().read(true).read(false).open("foo.txt");
|
2024-01-25 12:17:36 -06:00
|
|
|
| ^^^^^^^^^^^
|
2017-02-07 14:05:30 -06:00
|
|
|
|
2020-01-06 00:36:33 -06:00
|
|
|
error: the method `create` is called more than once
|
2024-02-27 08:25:18 -06:00
|
|
|
--> tests/ui/open_options.rs:28:10
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2024-01-25 12:17:36 -06:00
|
|
|
LL | .create(false)
|
|
|
|
| ^^^^^^^^^^^^^
|
2017-02-07 14:05:30 -06:00
|
|
|
|
2020-01-06 00:36:33 -06:00
|
|
|
error: the method `write` is called more than once
|
2024-02-27 08:25:18 -06:00
|
|
|
--> tests/ui/open_options.rs:31:36
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | OpenOptions::new().write(true).write(false).open("foo.txt");
|
2024-01-25 12:17:36 -06:00
|
|
|
| ^^^^^^^^^^^^
|
2017-02-07 14:05:30 -06:00
|
|
|
|
2020-01-06 00:36:33 -06:00
|
|
|
error: the method `append` is called more than once
|
2024-02-27 08:25:18 -06:00
|
|
|
--> tests/ui/open_options.rs:33:37
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | OpenOptions::new().append(true).append(false).open("foo.txt");
|
2024-01-25 12:17:36 -06:00
|
|
|
| ^^^^^^^^^^^^^
|
2017-02-07 14:05:30 -06:00
|
|
|
|
2020-01-06 00:36:33 -06:00
|
|
|
error: the method `truncate` is called more than once
|
2024-02-27 08:25:18 -06:00
|
|
|
--> tests/ui/open_options.rs:35:39
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | OpenOptions::new().truncate(true).truncate(false).open("foo.txt");
|
2024-01-25 12:17:36 -06:00
|
|
|
| ^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: the method `read` is called more than once
|
2024-02-27 08:25:18 -06:00
|
|
|
--> tests/ui/open_options.rs:38:41
|
2024-01-25 12:17:36 -06:00
|
|
|
|
|
|
|
|
LL | std::fs::File::options().read(true).read(false).open("foo.txt");
|
|
|
|
| ^^^^^^^^^^^
|
2017-02-07 14:05:30 -06:00
|
|
|
|
2024-01-25 12:17:36 -06:00
|
|
|
error: aborting due to 8 previous errors
|
2018-01-16 10:06:27 -06:00
|
|
|
|