rust/tests
Tomasz Miąsko 4f4abf4e06 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;
}
```
2020-08-16 23:31:36 +02:00
..
auxiliary
cargo
ui Warn about explicit self-assignment 2020-08-16 23:31:36 +02:00
ui-cargo
ui-toml too-many-lines: make lint adhere to lint message convention 2020-08-10 20:55:23 +02:00
compile-test.rs Auto merge of #5891 - flip1995:rustup, r=flip1995 2020-08-11 12:32:10 +00:00
dogfood.rs
fmt.rs
integration.rs
missing-test-files.rs
versioncheck.rs