rust/src/test/ui/suggestions
Esteban Küber 44e414c477 Use proper span for tuple index parsed as float
Fix diagnostic suggestion from:

```rust
help: try parenthesizing the first index
  |     (1, (2, 3)).((1, (2, 3)).1).1;
```

to the correct:

```rust
help: try parenthesizing the first index
  |     ((1, (2, 3)).1).1;
```
2017-04-05 09:55:56 -07:00
..
confuse-field-and-method Simplify labels and move tests to ui 2017-03-28 19:43:38 -07:00
tuple-float-index.rs Use proper span for tuple index parsed as float 2017-04-05 09:55:56 -07:00
tuple-float-index.stderr Use proper span for tuple index parsed as float 2017-04-05 09:55:56 -07:00