rust/xtask
bors[bot] dac7060382
Merge #6476
6476: Add missing AssocItems in add_custom_impl assist r=matklad a=Veykril

```rust
use std::fmt;

#[derive(Debu<|>g)]
struct Foo {
    bar: String,
}
```
->
```rust
use std::fmt;

struct Foo {
    bar: String,
}

impl fmt::Debug for Foo {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        ${0:todo!()}
    }
}
```

Co-authored-by: Lukas Wirth <lukastw97@gmail.com>
2020-11-07 18:21:11 +00:00
..
src Kill RAW_ literals 2020-11-06 22:23:14 +01:00
tests Add missing AssocItems in add_custom_impl assist 2020-11-05 23:41:46 +01:00
Cargo.toml Switch from not_bash to xshell 2020-10-17 02:42:42 +02:00