rust/src/librustc_errors
Esteban Küber 4bc7f5b52c Always show end line of multiline annotations
```rust
error[E0046]: not all trait items implemented, missing: `Item`
  --> $DIR/issue-23729.rs:20:9
   |
20 |           impl Iterator for Recurrence {
   |  _________^ starting here...
21 | |             //~^ ERROR E0046
22 | |             //~| NOTE missing `Item` in implementation
23 | |             //~| NOTE `Item` from trait: `type Item;`
...  |
36 | |             }
37 | |         }
   | |_________^ ...ending here: missing `Item` in implementation
   |
   = note: `Item` from trait: `type Item;`
```

instead of

```rust
error[E0046]: not all trait items implemented, missing: `Item`
  --> $DIR/issue-23729.rs:20:9
   |
20 |         impl Iterator for Recurrence {
   |         ^ missing `Item` in implementation
   |
   = note: `Item` from trait: `type Item;`
```
2017-04-09 13:48:25 -07:00
..
Cargo.toml store typeck lints in the TypeckTables 2017-02-02 20:38:16 -05:00
diagnostic.rs store typeck lints in the TypeckTables 2017-02-02 20:38:16 -05:00
diagnostic_builder.rs Teach diagnostics to correct margin on multiline messages 2017-01-08 16:07:14 -08:00
emitter.rs Always show end line of multiline annotations 2017-04-09 13:48:25 -07:00
lib.rs Merge ExpnId and SyntaxContext. 2017-03-29 00:41:10 +00:00
lock.rs run rustfmt on librustc_errors folder 2016-10-18 23:13:02 +05:30
registry.rs run rustfmt on librustc_errors folder 2016-10-18 23:13:02 +05:30
snippet.rs Always show end line of multiline annotations 2017-04-09 13:48:25 -07:00
styled_buffer.rs run rustfmt on librustc_errors folder 2016-10-18 23:13:02 +05:30