]> git.lizzy.rs Git - rust.git/blob - tests/ui/default_trait_access.stderr
Merge pull request #2984 from flip1995/single_char_pattern
[rust.git] / tests / ui / default_trait_access.stderr
1 error: Calling std::string::String::default() is more clear than this expression
2  --> $DIR/default_trait_access.rs:8:22
3   |
4 8 |     let s1: String = Default::default();
5   |                      ^^^^^^^^^^^^^^^^^^ help: try: `std::string::String::default()`
6   |
7   = note: `-D default-trait-access` implied by `-D warnings`
8
9 error: Calling std::string::String::default() is more clear than this expression
10   --> $DIR/default_trait_access.rs:12:22
11    |
12 12 |     let s3: String = D2::default();
13    |                      ^^^^^^^^^^^^^ help: try: `std::string::String::default()`
14
15 error: Calling std::string::String::default() is more clear than this expression
16   --> $DIR/default_trait_access.rs:14:22
17    |
18 14 |     let s4: String = std::default::Default::default();
19    |                      ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `std::string::String::default()`
20
21 error: Calling std::string::String::default() is more clear than this expression
22   --> $DIR/default_trait_access.rs:18:22
23    |
24 18 |     let s6: String = default::Default::default();
25    |                      ^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `std::string::String::default()`
26
27 error: Calling GenericDerivedDefault<std::string::String>::default() is more clear than this expression
28   --> $DIR/default_trait_access.rs:28:46
29    |
30 28 |     let s11: GenericDerivedDefault<String> = Default::default();
31    |                                              ^^^^^^^^^^^^^^^^^^ help: try: `GenericDerivedDefault<std::string::String>::default()`
32
33 error: Calling TupleDerivedDefault::default() is more clear than this expression
34   --> $DIR/default_trait_access.rs:34:36
35    |
36 34 |     let s14: TupleDerivedDefault = Default::default();
37    |                                    ^^^^^^^^^^^^^^^^^^ help: try: `TupleDerivedDefault::default()`
38
39 error: Calling ArrayDerivedDefault::default() is more clear than this expression
40   --> $DIR/default_trait_access.rs:36:36
41    |
42 36 |     let s15: ArrayDerivedDefault = Default::default();
43    |                                    ^^^^^^^^^^^^^^^^^^ help: try: `ArrayDerivedDefault::default()`
44
45 error: Calling TupleStructDerivedDefault::default() is more clear than this expression
46   --> $DIR/default_trait_access.rs:40:42
47    |
48 40 |     let s17: TupleStructDerivedDefault = Default::default();
49    |                                          ^^^^^^^^^^^^^^^^^^ help: try: `TupleStructDerivedDefault::default()`
50
51 error: aborting due to 8 previous errors
52