diff options
| author | bors <bors@rust-lang.org> | 2020-08-16 21:56:37 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2020-08-16 21:56:37 +0000 |
| commit | 8332fe81d888aaa081bf85e5695eaabd2624ea73 (patch) | |
| tree | d44d58b8093ea749dd64d37f188c41a9bc7a9e1c /src/test/codegen/src-hash-algorithm | |
| parent | 8d0d89adc81be1fa7766ff17aa4f2c6d5e8c69f7 (diff) | |
| parent | 4f4abf4e0640edbb1614f3dcb8ff62e8afc54801 (diff) | |
| download | rust-8332fe81d888aaa081bf85e5695eaabd2624ea73.tar.gz rust-8332fe81d888aaa081bf85e5695eaabd2624ea73.zip | |
Auto merge of #5894 - tmiasko:self-assignment, r=Manishearth
Warn about explicit self-assignment
Warn about assignments where left-hand side place expression is the same
as right-hand side value expression. For example, warn about assignment in:
```rust
pub struct Event {
id: usize,
x: i32,
y: i32,
}
pub fn copy_position(a: &mut Event, b: &Event) {
a.x = b.x;
a.y = a.y;
}
```
changelog: New lint `self_assignment`, checks for explicit self-assignments.
Diffstat (limited to 'src/test/codegen/src-hash-algorithm')
0 files changed, 0 insertions, 0 deletions
