about summary refs log tree commit diff
path: root/src/test/parse-fail/tuple-float-index.rs
AgeCommit message (Collapse)AuthorLines
2017-04-05Use proper span for tuple index parsed as floatEsteban Küber-17/+0
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-01-31use suggestions instead of helps with code in themOliver Schneider-1/+2
2015-09-14Fix tuple float bug.christopherdumas-0/+16