]> git.lizzy.rs Git - rust.git/blob - src/test/ui/suggestions/tuple-float-index.stderr
15af0834f03729a12b2f1fd27f42ea6d09e3abf4
[rust.git] / src / test / ui / suggestions / tuple-float-index.stderr
1 error: unexpected token: `1.1`
2   --> $DIR/tuple-float-index.rs:15:17
3    |
4 LL |     (1, (2, 3)).1.1; //~ ERROR unexpected token: `1.1`
5    |     ------------^^^
6    |     |           |
7    |     |           unexpected token
8    |     help: try parenthesizing the first index: `((1, (2, 3)).1).1`
9
10 error: aborting due to previous error
11