]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/open_options.stderr
iterate List by value
[rust.git] / tests / ui / open_options.stderr
index 10691d65a292dc3035b91bfaa402e4f82cb22921..26fe9f6fb206f86433da3592d13f6adf30771c1d 100644 (file)
@@ -1,45 +1,45 @@
-error: file opened with "truncate" and "read"
-  --> $DIR/open_options.rs:15:5
+error: file opened with `truncate` and `read`
+  --> $DIR/open_options.rs:6:5
    |
-15 |     OpenOptions::new().read(true).truncate(true).open("foo.txt");
+LL |     OpenOptions::new().read(true).truncate(true).open("foo.txt");
    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    |
    = note: `-D clippy::nonsensical-open-options` implied by `-D warnings`
 
-error: file opened with "append" and "truncate"
-  --> $DIR/open_options.rs:16:5
+error: file opened with `append` and `truncate`
+  --> $DIR/open_options.rs:7:5
    |
-16 |     OpenOptions::new().append(true).truncate(true).open("foo.txt");
+LL |     OpenOptions::new().append(true).truncate(true).open("foo.txt");
    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
 
-error: the method "read" is called more than once
-  --> $DIR/open_options.rs:18:5
+error: the method `read` is called more than once
+  --> $DIR/open_options.rs:9:5
    |
-18 |     OpenOptions::new().read(true).read(false).open("foo.txt");
+LL |     OpenOptions::new().read(true).read(false).open("foo.txt");
    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
 
-error: the method "create" is called more than once
-  --> $DIR/open_options.rs:19:5
+error: the method `create` is called more than once
+  --> $DIR/open_options.rs:10:5
    |
-19 |     OpenOptions::new().create(true).create(false).open("foo.txt");
+LL |     OpenOptions::new().create(true).create(false).open("foo.txt");
    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
 
-error: the method "write" is called more than once
-  --> $DIR/open_options.rs:20:5
+error: the method `write` is called more than once
+  --> $DIR/open_options.rs:11:5
    |
-20 |     OpenOptions::new().write(true).write(false).open("foo.txt");
+LL |     OpenOptions::new().write(true).write(false).open("foo.txt");
    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
 
-error: the method "append" is called more than once
-  --> $DIR/open_options.rs:21:5
+error: the method `append` is called more than once
+  --> $DIR/open_options.rs:12:5
    |
-21 |     OpenOptions::new().append(true).append(false).open("foo.txt");
+LL |     OpenOptions::new().append(true).append(false).open("foo.txt");
    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
 
-error: the method "truncate" is called more than once
-  --> $DIR/open_options.rs:22:5
+error: the method `truncate` is called more than once
+  --> $DIR/open_options.rs:13:5
    |
-22 |     OpenOptions::new().truncate(true).truncate(false).open("foo.txt");
+LL |     OpenOptions::new().truncate(true).truncate(false).open("foo.txt");
    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
 
 error: aborting due to 7 previous errors