]> git.lizzy.rs Git - rust.git/blob - tests/ui/default_trait_access.stderr
Add default_trait_access lint
[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 T::default() is more clear than this expression
28   --> $DIR/default_trait_access.rs:33:9
29    |
30 33 |         Default::default()
31    |         ^^^^^^^^^^^^^^^^^^ help: try: `T::default()`
32
33 error: aborting due to 5 previous errors
34