Files
rust/src
Corey Farwell 236978e411 Rollup merge of #41214 - estebank:less-multiline, r=petrochenkov
Add a way to get shorter spans until `char` for pointing at defs

```rust
error[E0072]: recursive type `X` has infinite size
  --> file.rs:10:1
   |
10 | struct X {
   | ^^^^^^^^ recursive type has infinite size
   |
   = help: insert indirection (e.g., a `Box`, `Rc`, or `&`) at some point to make `X` representable
```

vs

```rust
error[E0072]: recursive type `X` has infinite size
  --> file.rs:10:1
   |
10 |   struct X {
   |  _^ starting here...
11 | |     x: X,
12 | | }
   | |_^ ...ending here: recursive type has infinite size
   |
   = help: insert indirection (e.g., a `Box`, `Rc`, or `&`) at some point to make `X` representable
```

Re: #35965,  #38246. Follow up to #38328.

r? @jonathandturner
2017-04-20 01:39:53 -04:00
..
2017-04-18 21:26:10 -04:00
2017-04-17 17:49:35 +01:00
2017-04-18 23:33:38 +01:00
2017-03-25 11:03:06 -03:00
2017-04-14 03:39:03 +02:00
2017-04-04 15:39:44 -04:00
2017-03-24 00:54:23 +02:00
2017-04-17 18:10:03 +02:00
2017-03-28 11:38:56 -06:00