]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/default_trait_access.stderr
Auto merge of #8374 - Alexendoo:bless-revisions, r=camsteffen
[rust.git] / tests / ui / default_trait_access.stderr
index b2cb49e6c80815c84a2ec23170bd0ce9959e2f4e..df8a5b94ddcf3c81468744a3263fdd0b316964c5 100644 (file)
@@ -1,34 +1,56 @@
-error: Calling std::string::String::default() is more clear than this expression
- --> $DIR/default_trait_access.rs:8:22
-  |
-8 |     let s1: String = Default::default();
-  |                      ^^^^^^^^^^^^^^^^^^ help: try: `std::string::String::default()`
-  |
-  = note: `-D default-trait-access` implied by `-D warnings`
-
-error: Calling std::string::String::default() is more clear than this expression
-  --> $DIR/default_trait_access.rs:12:22
-   |
-12 |     let s3: String = D2::default();
+error: calling `std::string::String::default()` is more clear than this expression
+  --> $DIR/default_trait_access.rs:11:22
+   |
+LL |     let s1: String = Default::default();
+   |                      ^^^^^^^^^^^^^^^^^^ help: try: `std::string::String::default()`
+   |
+note: the lint level is defined here
+  --> $DIR/default_trait_access.rs:4:9
+   |
+LL | #![deny(clippy::default_trait_access)]
+   |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+
+error: calling `std::string::String::default()` is more clear than this expression
+  --> $DIR/default_trait_access.rs:15:22
+   |
+LL |     let s3: String = D2::default();
    |                      ^^^^^^^^^^^^^ help: try: `std::string::String::default()`
 
-error: Calling std::string::String::default() is more clear than this expression
-  --> $DIR/default_trait_access.rs:14:22
+error: calling `std::string::String::default()` is more clear than this expression
+  --> $DIR/default_trait_access.rs:17:22
    |
-14 |     let s4: String = std::default::Default::default();
+LL |     let s4: String = std::default::Default::default();
    |                      ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `std::string::String::default()`
 
-error: Calling std::string::String::default() is more clear than this expression
-  --> $DIR/default_trait_access.rs:18:22
+error: calling `std::string::String::default()` is more clear than this expression
+  --> $DIR/default_trait_access.rs:21:22
    |
-18 |     let s6: String = default::Default::default();
+LL |     let s6: String = default::Default::default();
    |                      ^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `std::string::String::default()`
 
-error: Calling T::default() is more clear than this expression
-  --> $DIR/default_trait_access.rs:33:9
+error: calling `GenericDerivedDefault::default()` is more clear than this expression
+  --> $DIR/default_trait_access.rs:31:46
+   |
+LL |     let s11: GenericDerivedDefault<String> = Default::default();
+   |                                              ^^^^^^^^^^^^^^^^^^ help: try: `GenericDerivedDefault::default()`
+
+error: calling `TupleDerivedDefault::default()` is more clear than this expression
+  --> $DIR/default_trait_access.rs:37:36
+   |
+LL |     let s14: TupleDerivedDefault = Default::default();
+   |                                    ^^^^^^^^^^^^^^^^^^ help: try: `TupleDerivedDefault::default()`
+
+error: calling `ArrayDerivedDefault::default()` is more clear than this expression
+  --> $DIR/default_trait_access.rs:39:36
+   |
+LL |     let s15: ArrayDerivedDefault = Default::default();
+   |                                    ^^^^^^^^^^^^^^^^^^ help: try: `ArrayDerivedDefault::default()`
+
+error: calling `TupleStructDerivedDefault::default()` is more clear than this expression
+  --> $DIR/default_trait_access.rs:43:42
    |
-33 |         Default::default()
-   |         ^^^^^^^^^^^^^^^^^^ help: try: `T::default()`
+LL |     let s17: TupleStructDerivedDefault = Default::default();
+   |                                          ^^^^^^^^^^^^^^^^^^ help: try: `TupleStructDerivedDefault::default()`
 
-error: aborting due to 5 previous errors
+error: aborting due to 8 previous errors