rust-clippy/tests/ui/open_options.stderr

48 lines
1.8 KiB
Text
Raw Normal View History

2020-01-06 06:36:33 +00:00
error: file opened with `truncate` and `read`
--> $DIR/open_options.rs:6:5
2018-10-06 16:18:06 +00:00
|
2018-12-27 15:57:55 +00:00
LL | OpenOptions::new().read(true).truncate(true).open("foo.txt");
2018-10-06 16:18:06 +00:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: `-D clippy::nonsensical-open-options` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::nonsensical_open_options)]`
2020-01-06 06:36:33 +00:00
error: file opened with `append` and `truncate`
--> $DIR/open_options.rs:9:5
2018-10-06 16:18:06 +00:00
|
2018-12-27 15:57:55 +00:00
LL | OpenOptions::new().append(true).truncate(true).open("foo.txt");
2018-10-06 16:18:06 +00:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2020-01-06 06:36:33 +00:00
error: the method `read` is called more than once
--> $DIR/open_options.rs:12:5
|
2018-12-27 15:57:55 +00:00
LL | OpenOptions::new().read(true).read(false).open("foo.txt");
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2020-01-06 06:36:33 +00:00
error: the method `create` is called more than once
--> $DIR/open_options.rs:14:5
|
2018-12-27 15:57:55 +00:00
LL | OpenOptions::new().create(true).create(false).open("foo.txt");
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2020-01-06 06:36:33 +00:00
error: the method `write` is called more than once
--> $DIR/open_options.rs:16:5
|
2018-12-27 15:57:55 +00:00
LL | OpenOptions::new().write(true).write(false).open("foo.txt");
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2020-01-06 06:36:33 +00:00
error: the method `append` is called more than once
--> $DIR/open_options.rs:18:5
|
2018-12-27 15:57:55 +00:00
LL | OpenOptions::new().append(true).append(false).open("foo.txt");
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2020-01-06 06:36:33 +00:00
error: the method `truncate` is called more than once
--> $DIR/open_options.rs:20:5
|
2018-12-27 15:57:55 +00:00
LL | OpenOptions::new().truncate(true).truncate(false).open("foo.txt");
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2018-01-16 16:06:27 +00:00
error: aborting due to 7 previous errors