2022-10-06 07:44:38 +00:00
|
|
|
error: `Box::new(_)` of default value
|
2024-02-27 14:25:18 +00:00
|
|
|
--> tests/ui/box_default.rs:22:32
|
2022-10-06 07:44:38 +00:00
|
|
|
|
|
|
|
|
LL | let _string: Box<String> = Box::new(Default::default());
|
2022-10-23 13:18:45 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `Box::default()`
|
2022-10-06 07:44:38 +00:00
|
|
|
|
|
|
|
|
= note: `-D clippy::box-default` implied by `-D warnings`
|
2023-08-01 12:02:21 +00:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::box_default)]`
|
2022-10-06 07:44:38 +00:00
|
|
|
|
|
|
|
error: `Box::new(_)` of default value
|
2024-02-27 14:25:18 +00:00
|
|
|
--> tests/ui/box_default.rs:23:17
|
2022-10-06 07:44:38 +00:00
|
|
|
|
|
|
|
|
LL | let _byte = Box::new(u8::default());
|
2022-10-23 13:18:45 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^ help: try: `Box::<u8>::default()`
|
2022-10-06 07:44:38 +00:00
|
|
|
|
|
|
|
error: `Box::new(_)` of default value
|
2024-02-27 14:25:18 +00:00
|
|
|
--> tests/ui/box_default.rs:24:16
|
2022-10-06 07:44:38 +00:00
|
|
|
|
|
|
|
|
LL | let _vec = Box::new(Vec::<u8>::new());
|
2024-02-27 14:25:18 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `Box::<Vec::<u8>>::default()`
|
2022-10-06 07:44:38 +00:00
|
|
|
|
|
|
|
error: `Box::new(_)` of default value
|
2024-02-27 14:25:18 +00:00
|
|
|
--> tests/ui/box_default.rs:25:17
|
2022-10-06 07:44:38 +00:00
|
|
|
|
|
|
|
|
LL | let _impl = Box::new(ImplementsDefault::default());
|
2022-10-23 13:18:45 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `Box::<ImplementsDefault>::default()`
|
2022-10-06 07:44:38 +00:00
|
|
|
|
|
|
|
error: `Box::new(_)` of default value
|
2024-02-27 14:25:18 +00:00
|
|
|
--> tests/ui/box_default.rs:26:18
|
2022-10-06 07:44:38 +00:00
|
|
|
|
|
|
|
|
LL | let _impl2 = Box::new(<ImplementsDefault as Default>::default());
|
2022-10-23 13:18:45 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `Box::<ImplementsDefault>::default()`
|
2022-10-06 07:44:38 +00:00
|
|
|
|
|
|
|
error: `Box::new(_)` of default value
|
2024-02-27 14:25:18 +00:00
|
|
|
--> tests/ui/box_default.rs:27:42
|
2022-10-06 07:44:38 +00:00
|
|
|
|
|
|
|
|
LL | let _impl3: Box<ImplementsDefault> = Box::new(Default::default());
|
2022-10-23 13:18:45 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `Box::default()`
|
2022-10-06 07:44:38 +00:00
|
|
|
|
|
|
|
error: `Box::new(_)` of default value
|
2024-02-27 14:25:18 +00:00
|
|
|
--> tests/ui/box_default.rs:29:28
|
2022-10-06 07:44:38 +00:00
|
|
|
|
|
|
|
|
LL | let _in_macro = outer!(Box::new(String::new()));
|
2023-01-12 18:48:13 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^ help: try: `Box::<String>::default()`
|
2022-10-23 13:18:45 +00:00
|
|
|
|
|
|
|
error: `Box::new(_)` of default value
|
2024-02-27 14:25:18 +00:00
|
|
|
--> tests/ui/box_default.rs:30:34
|
2022-10-23 13:18:45 +00:00
|
|
|
|
|
|
|
|
LL | let _string_default = outer!(Box::new(String::from("")));
|
2023-01-12 18:48:13 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `Box::<String>::default()`
|
2022-10-23 13:18:45 +00:00
|
|
|
|
|
|
|
error: `Box::new(_)` of default value
|
2024-02-27 14:25:18 +00:00
|
|
|
--> tests/ui/box_default.rs:31:46
|
2022-10-23 13:18:45 +00:00
|
|
|
|
|
|
|
|
LL | let _vec2: Box<Vec<ImplementsDefault>> = Box::new(vec![]);
|
|
|
|
| ^^^^^^^^^^^^^^^^ help: try: `Box::default()`
|
|
|
|
|
|
|
|
error: `Box::new(_)` of default value
|
2024-02-27 14:25:18 +00:00
|
|
|
--> tests/ui/box_default.rs:32:33
|
2022-10-23 13:18:45 +00:00
|
|
|
|
|
|
|
|
LL | let _vec3: Box<Vec<bool>> = Box::new(Vec::from([]));
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^ help: try: `Box::default()`
|
|
|
|
|
|
|
|
error: `Box::new(_)` of default value
|
2024-02-27 14:25:18 +00:00
|
|
|
--> tests/ui/box_default.rs:33:25
|
2022-10-23 13:18:45 +00:00
|
|
|
|
|
|
|
|
LL | let _vec4: Box<_> = Box::new(Vec::from([false; 0]));
|
2023-01-12 18:48:13 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `Box::<Vec<bool>>::default()`
|
2022-10-23 13:18:45 +00:00
|
|
|
|
|
|
|
error: `Box::new(_)` of default value
|
2024-02-27 14:25:18 +00:00
|
|
|
--> tests/ui/box_default.rs:35:16
|
2022-10-23 13:18:45 +00:00
|
|
|
|
|
|
|
|
LL | call_ty_fn(Box::new(u8::default()));
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^ help: try: `Box::default()`
|
|
|
|
|
|
|
|
error: `Box::new(_)` of default value
|
2024-02-27 14:25:18 +00:00
|
|
|
--> tests/ui/box_default.rs:47:5
|
2022-10-23 13:18:45 +00:00
|
|
|
|
|
|
|
|
LL | Box::new(bool::default())
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `Box::<bool>::default()`
|
|
|
|
|
|
|
|
error: `Box::new(_)` of default value
|
2024-02-27 14:25:18 +00:00
|
|
|
--> tests/ui/box_default.rs:64:28
|
2022-10-06 07:44:38 +00:00
|
|
|
|
|
2022-10-23 13:18:45 +00:00
|
|
|
LL | let _: Box<dyn Read> = Box::new(ImplementsDefault::default());
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `Box::<ImplementsDefault>::default()`
|
2022-10-06 07:44:38 +00:00
|
|
|
|
2023-01-12 18:48:13 +00:00
|
|
|
error: `Box::new(_)` of default value
|
2024-02-27 14:25:18 +00:00
|
|
|
--> tests/ui/box_default.rs:73:17
|
2023-01-12 18:48:13 +00:00
|
|
|
|
|
|
|
|
LL | let _ = Box::new(WeirdPathed::default());
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `Box::<WeirdPathed>::default()`
|
|
|
|
|
2023-02-26 00:08:29 +00:00
|
|
|
error: `Box::new(_)` of default value
|
2024-02-27 14:25:18 +00:00
|
|
|
--> tests/ui/box_default.rs:85:18
|
2023-02-26 00:08:29 +00:00
|
|
|
|
|
|
|
|
LL | Some(Box::new(Foo::default()))
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `Box::<Foo>::default()`
|
|
|
|
|
2024-02-27 14:25:18 +00:00
|
|
|
error: `Box::new(_)` of default value
|
|
|
|
--> tests/ui/box_default.rs:119:18
|
|
|
|
|
|
|
|
|
LL | let _b = Box::new(outer::Inner::default());
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `Box::<outer::Inner>::default()`
|
|
|
|
|
|
|
|
error: `Box::new(_)` of default value
|
|
|
|
--> tests/ui/box_default.rs:120:18
|
|
|
|
|
|
|
|
|
LL | let _b = Box::new(std::collections::HashSet::<i32>::new());
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `Box::<std::collections::HashSet::<i32>>::default()`
|
|
|
|
|
|
|
|
error: aborting due to 18 previous errors
|
2022-10-06 07:44:38 +00:00
|
|
|
|