summary refs log tree commit diff
path: root/src/test/ui/suggestions/tuple-float-index.rs
AgeCommit message (Collapse)AuthorLines
2017-11-24Merge cfail and ui tests into ui testsOliver Schneider-1/+1
2017-04-05Use proper span for tuple index parsed as floatEsteban Küber-0/+15
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; ```