summary refs log tree commit diff
path: root/src/test/ui/suggestions/tuple-float-index.stderr
blob: 4a1e34890f4847be3962bdf4fb1ff4715f490a13 (plain)
1
2
3
4
5
6
7
8
9
10
11
error: unexpected token: `1.1`
  --> $DIR/tuple-float-index.rs:14:17
   |
LL |     (1, (2, 3)).1.1; //~ ERROR unexpected token: `1.1`
   |     ------------^^^
   |     |           |
   |     |           unexpected token
   |     help: try parenthesizing the first index: `((1, (2, 3)).1).1`

error: aborting due to previous error