rust/src/test/ui/tuple/tuple-float-index.stderr
Vadim Petrochenkov fa72a81bea Update tests
2019-03-11 23:10:26 +03:00

11 lines
296 B
Text

error: unexpected token: `1.1`
--> $DIR/tuple-float-index.rs:4:17
|
LL | (1, (2, 3)).1.1;
| ------------^^^
| | |
| | unexpected token
| help: try parenthesizing the first index: `((1, (2, 3)).1).1`
error: aborting due to previous error