rust/tests/ui/open_options.stderr

47 lines
1.7 KiB
Text
Raw Normal View History

error: file opened with "truncate" and "read"
2018-12-10 06:27:19 +01:00
--> $DIR/open_options.rs:15:5
2018-10-06 18:18:06 +02:00
|
2018-12-10 06:27:19 +01:00
15 | OpenOptions::new().read(true).truncate(true).open("foo.txt");
2018-10-06 18:18:06 +02:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: `-D clippy::nonsensical-open-options` implied by `-D warnings`
error: file opened with "append" and "truncate"
2018-12-10 06:27:19 +01:00
--> $DIR/open_options.rs:16:5
2018-10-06 18:18:06 +02:00
|
2018-12-10 06:27:19 +01:00
16 | OpenOptions::new().append(true).truncate(true).open("foo.txt");
2018-10-06 18:18:06 +02:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: the method "read" is called more than once
2018-12-10 06:27:19 +01:00
--> $DIR/open_options.rs:18:5
|
2018-12-10 06:27:19 +01:00
18 | OpenOptions::new().read(true).read(false).open("foo.txt");
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: the method "create" is called more than once
2018-12-10 06:27:19 +01:00
--> $DIR/open_options.rs:19:5
|
2018-12-10 06:27:19 +01:00
19 | OpenOptions::new().create(true).create(false).open("foo.txt");
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: the method "write" is called more than once
2018-12-10 06:27:19 +01:00
--> $DIR/open_options.rs:20:5
|
2018-12-10 06:27:19 +01:00
20 | OpenOptions::new().write(true).write(false).open("foo.txt");
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: the method "append" is called more than once
2018-12-10 06:27:19 +01:00
--> $DIR/open_options.rs:21:5
|
2018-12-10 06:27:19 +01:00
21 | OpenOptions::new().append(true).append(false).open("foo.txt");
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: the method "truncate" is called more than once
2018-12-10 06:27:19 +01:00
--> $DIR/open_options.rs:22:5
|
2018-12-10 06:27:19 +01:00
22 | OpenOptions::new().truncate(true).truncate(false).open("foo.txt");
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2018-01-16 17:06:27 +01:00
error: aborting due to 7 previous errors