bors
95396f61bc
Auto merge of #8617 - Alexendoo:relax-needless-late-init, r=giraffate
...
`needless_late_init`: ignore `if let`, `let mut` and significant drops
No longer lints `if let`, personal taste on this one is pretty split, so it probably shouldn't be warning by default. Fixes #8613
```rust
let x = if let Some(n) = y {
n
} else {
1
}
```
No longer lints `let mut`, things like the following are not uncommon and look fine as they are
b169c16d86/src/sixty_four.rs (L88-L93)
Avoids changing the drop order in an observable way, where the type of `x` has a drop with side effects and something between `x` and the first use also does, e.g.
48cc6cb791/tests/test_api.rs (L159-L167)
The implementation of `type_needs_ordered_drop_inner` was changed a bit, it now uses `Ty::has_significant_drop` and reordered the ifs to check diagnostic name before checking the implicit drop impl
changelog: [`needless_late_init`]: No longer lints `if let` statements, `let mut` bindings and no longer significantly changes drop order
2022-04-27 00:11:17 +00:00
..
2022-04-15 14:18:09 -07:00
2022-04-22 20:05:18 -04:00
2022-04-13 22:47:08 -06:00
2022-04-19 10:48:12 +09:00
2022-04-19 10:48:12 +09:00
2022-04-19 10:48:12 +09:00
2022-04-07 15:44:37 +01:00
2022-03-30 20:12:58 +02:00
2022-04-07 11:28:14 +02:00
2022-04-07 11:28:14 +02:00
2022-04-07 11:28:14 +02:00
2022-04-14 21:34:33 -04:00
2022-04-04 13:54:52 -04:00
2022-04-14 21:33:32 -04:00
2022-04-14 21:33:32 -04:00
2022-04-11 18:54:44 +01:00
2022-04-11 18:54:44 +01:00
2022-04-21 13:45:40 -04:00
2022-04-21 13:45:40 -04:00
2022-04-21 13:45:40 -04:00
2022-03-28 04:48:12 -04:00
2022-03-28 04:48:12 -04:00
2022-03-30 12:52:31 -04:00
2022-04-14 21:33:32 -04:00
2022-04-14 21:33:32 -04:00
2022-04-14 21:33:32 -04:00
2022-04-14 21:33:32 -04:00
2022-04-14 21:33:32 -04:00
2022-04-14 21:33:32 -04:00
2022-04-14 21:33:32 -04:00
2022-04-14 21:33:32 -04:00
2022-03-30 20:12:58 +02:00
2022-04-04 12:30:09 -04:00
2022-04-04 12:30:09 -04:00
2022-04-10 01:07:01 +08:00
2022-04-04 12:30:09 -04:00
2022-04-21 10:03:01 +02:00
2022-04-21 10:03:01 +02:00
2022-04-21 10:03:01 +02:00
2022-03-30 20:13:16 +02:00
2022-03-30 20:13:16 +02:00
2022-03-30 20:13:16 +02:00
2022-04-06 19:25:58 +02:00
2022-04-06 19:25:58 +02:00
2022-04-06 19:25:58 +02:00
2022-04-10 14:26:44 +01:00
2022-04-10 14:26:44 +01:00
2022-04-10 14:26:44 +01:00
2022-04-25 05:20:08 -04:00
2022-04-22 20:05:18 -04:00
2022-03-30 20:12:58 +02:00
2022-04-04 12:30:09 -04:00
2022-04-04 12:30:09 -04:00
2022-04-04 12:30:09 -04:00
2022-04-13 22:48:36 -06:00
2022-04-13 22:48:36 -06:00
2022-04-13 22:48:36 -06:00
2022-04-13 22:48:36 -06:00
2022-04-22 20:05:18 -04:00
2022-03-30 20:12:58 +02:00
2022-04-07 14:14:30 -06:00
2022-04-07 14:14:30 -06:00
2022-04-07 14:14:30 -06:00
2022-03-30 20:12:58 +02:00
2022-03-30 20:12:58 +02:00
2022-04-14 21:33:32 -04:00
2022-04-14 21:33:32 -04:00
2022-03-29 21:51:37 +09:00
2022-04-08 23:41:50 -04:00
2022-04-08 23:41:50 -04:00
2022-03-30 20:12:58 +02:00
2022-03-30 20:12:58 +02:00
2022-04-14 21:33:32 -04:00
2022-04-14 21:33:32 -04:00
2022-03-30 20:12:58 +02:00
2022-04-14 21:34:33 -04:00
2022-04-14 21:34:33 -04:00
2022-04-14 21:34:33 -04:00
2022-03-30 20:12:58 +02:00
2022-03-30 20:12:58 +02:00
2022-04-13 19:31:24 +02:00
2022-04-13 19:31:24 +02:00
2022-04-13 19:31:24 +02:00
2022-04-06 10:12:30 -04:00
2022-04-06 10:12:30 -04:00
2022-04-06 10:12:30 -04:00
2022-04-06 10:12:30 -04:00
2022-04-21 18:33:54 +01:00
2022-04-21 18:33:54 +01:00
2022-04-21 18:33:54 +01:00
2022-03-30 20:12:58 +02:00
2022-03-30 20:12:58 +02:00
2022-03-30 20:12:58 +02:00
2022-04-07 11:28:14 +02:00
2022-04-07 11:28:14 +02:00
2022-03-30 20:12:58 +02:00
2022-04-24 15:28:36 +02:00
2022-04-24 15:28:36 +02:00
2022-04-24 15:28:36 +02:00
2022-03-30 20:12:58 +02:00
2022-03-30 20:12:58 +02:00
2022-04-06 10:59:57 -04:00
2022-04-06 10:59:57 -04:00
2022-03-30 20:12:58 +02:00
2022-04-14 21:33:32 -04:00
2022-04-14 21:33:32 -04:00
2022-04-14 21:33:32 -04:00
2022-04-26 13:16:54 +01:00
2022-04-26 13:16:54 +01:00
2022-04-26 13:16:54 +01:00
2022-04-26 13:16:54 +01:00
2022-04-26 13:16:54 +01:00
2022-03-30 20:12:58 +02:00
2022-04-18 14:33:13 +09:00
2022-04-18 14:33:13 +09:00
2022-04-18 14:33:13 +09:00
2022-04-10 14:26:44 +01:00
2022-04-10 14:26:44 +01:00
2022-04-07 12:39:21 +01:00
2022-04-14 12:41:47 +02:00
2022-04-14 13:16:46 +02:00
2022-04-14 12:41:47 +02:00
2022-04-10 17:05:07 +01:00
2022-04-10 17:05:07 +01:00
2022-04-10 17:05:07 +01:00
2022-04-22 20:05:18 -04:00
2022-03-30 20:13:16 +02:00
2022-03-30 20:13:16 +02:00
2022-04-14 21:33:32 -04:00
2022-04-14 21:33:32 -04:00
2022-04-14 21:33:32 -04:00
2022-04-14 21:33:32 -04:00
2022-04-14 13:16:46 +02:00
2022-04-14 21:34:33 -04:00
2022-04-14 21:34:33 -04:00
2022-04-14 21:34:33 -04:00
2022-03-30 20:12:58 +02:00
2022-04-13 13:48:27 +02:00
2022-04-13 13:48:27 +02:00
2022-03-30 20:12:58 +02:00
2022-03-30 20:12:58 +02:00
2022-03-30 20:12:58 +02:00
2022-03-30 20:12:58 +02:00
2022-04-04 12:30:09 -04:00
2022-04-04 12:30:09 -04:00
2022-04-22 18:09:14 -04:00
2022-04-22 18:09:14 -04:00
2022-03-30 20:12:58 +02:00
2022-03-30 20:12:58 +02:00
2022-04-11 22:47:04 -05:00
2022-04-10 00:54:41 -04:00
2022-04-10 00:54:41 -04:00
2022-03-30 20:12:58 +02:00
2022-04-14 21:33:32 -04:00
2022-04-14 21:33:32 -04:00
2022-04-14 21:33:32 -04:00
2022-04-14 21:33:32 -04:00
2022-04-14 21:33:32 -04:00
2022-04-14 21:33:32 -04:00
2022-04-01 00:04:19 -06:00
2022-04-01 00:04:19 -06:00
2022-04-01 00:04:19 -06:00
2022-04-08 16:51:40 -04:00
2022-04-08 16:51:40 -04:00
2022-04-18 14:42:24 +08:00
2022-04-14 21:33:32 -04:00
2022-04-07 14:14:30 -06:00
2022-04-07 14:14:30 -06:00
2022-04-07 14:14:30 -06:00
2022-03-30 20:12:58 +02:00
2022-04-06 11:57:55 -04:00
2022-03-30 21:49:13 +01:00
2022-04-01 06:32:22 +01:00
2022-04-14 21:33:32 -04:00
2022-04-14 21:33:32 -04:00
2022-04-14 21:33:32 -04:00
2022-04-14 21:33:32 -04:00
2022-04-14 21:33:32 -04:00
2022-04-14 21:33:32 -04:00
2022-04-14 21:33:32 -04:00
2022-04-14 21:33:32 -04:00
2022-04-11 13:05:42 +02:00
2022-04-11 13:05:42 +02:00
2022-04-11 13:05:42 +02:00
2022-04-12 22:59:25 +09:00
2022-04-12 22:59:25 +09:00
2022-04-12 22:59:25 +09:00
2022-04-01 22:36:30 -06:00
2022-04-01 22:36:30 -06:00
2022-04-01 22:36:30 -06:00
2022-03-30 20:12:58 +02:00
2022-03-30 20:12:58 +02:00
2022-03-30 20:12:58 +02:00
2022-03-30 20:12:58 +02:00
2022-03-30 20:12:58 +02:00
2022-03-30 20:12:58 +02:00
2022-03-30 20:12:58 +02:00
2022-04-14 21:33:32 -04:00
2022-04-14 21:33:32 -04:00
2022-04-14 21:33:32 -04:00
2022-04-23 22:45:26 +09:00
2022-04-23 22:45:26 +09:00
2022-04-23 22:45:26 +09:00