blob: 47a1b53cc60e0d95a98f78a4e4d2cafdf02636dd (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
error: unexpected token: `1.1`
--> $DIR/tuple-float-index.rs:14:17
|
14 | (1, (2, 3)).1.1;
| ------------^^^
| | |
| | unexpected token
| help: try parenthesizing the first index `((1, (2, 3)).1).1`
error: aborting due to previous error(s)
|