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