]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/default_trait_access.stderr
Move MSRV tests into the lint specific test files
[rust.git] / tests / ui / default_trait_access.stderr
index d6ae00214c04d7829be4bcd17f4085c08e407f0e..49b2dde3f1e8c9e29183085da6850cc6f6c67e11 100644 (file)
@@ -1,51 +1,55 @@
-error: Calling std::string::String::default() is more clear than this expression
-  --> $DIR/default_trait_access.rs:20:22
+error: calling `std::string::String::default()` is more clear than this expression
+  --> $DIR/default_trait_access.rs:15:22
    |
-20 |     let s1: String = Default::default();
+LL |     let s1: String = Default::default();
    |                      ^^^^^^^^^^^^^^^^^^ help: try: `std::string::String::default()`
    |
-   = note: `-D clippy::default-trait-access` implied by `-D warnings`
+note: the lint level is defined here
+  --> $DIR/default_trait_access.rs:3:9
+   |
+LL | #![deny(clippy::default_trait_access)]
+   |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
 
-error: Calling std::string::String::default() is more clear than this expression
-  --> $DIR/default_trait_access.rs:24:22
+error: calling `std::string::String::default()` is more clear than this expression
+  --> $DIR/default_trait_access.rs:19:22
    |
-24 |     let s3: String = D2::default();
+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:26:22
+error: calling `std::string::String::default()` is more clear than this expression
+  --> $DIR/default_trait_access.rs:21:22
    |
-26 |     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:30:22
+error: calling `std::string::String::default()` is more clear than this expression
+  --> $DIR/default_trait_access.rs:25:22
    |
-30 |     let s6: String = default::Default::default();
+LL |     let s6: String = default::Default::default();
    |                      ^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `std::string::String::default()`
 
-error: Calling GenericDerivedDefault<std::string::String>::default() is more clear than this expression
-  --> $DIR/default_trait_access.rs:40:46
+error: calling `GenericDerivedDefault::default()` is more clear than this expression
+  --> $DIR/default_trait_access.rs:35:46
    |
-40 |     let s11: GenericDerivedDefault<String> = Default::default();
-   |                                              ^^^^^^^^^^^^^^^^^^ help: try: `GenericDerivedDefault<std::string::String>::default()`
+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:46:36
+error: calling `TupleDerivedDefault::default()` is more clear than this expression
+  --> $DIR/default_trait_access.rs:41:36
    |
-46 |     let s14: TupleDerivedDefault = Default::default();
+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:48:36
+error: calling `ArrayDerivedDefault::default()` is more clear than this expression
+  --> $DIR/default_trait_access.rs:43:36
    |
-48 |     let s15: ArrayDerivedDefault = Default::default();
+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:52:42
+error: calling `TupleStructDerivedDefault::default()` is more clear than this expression
+  --> $DIR/default_trait_access.rs:47:42
    |
-52 |     let s17: TupleStructDerivedDefault = Default::default();
+LL |     let s17: TupleStructDerivedDefault = Default::default();
    |                                          ^^^^^^^^^^^^^^^^^^ help: try: `TupleStructDerivedDefault::default()`
 
 error: aborting due to 8 previous errors