Files
rust/tests/ui/span/suggestion-non-ascii.stderr

10 lines
329 B
Plaintext
Raw Normal View History

2017-06-09 19:05:14 +02:00
error[E0608]: cannot index into a value of type `({integer},)`
2018-12-25 08:56:47 -07:00
--> $DIR/suggestion-non-ascii.rs:3:21
|
2019-03-09 15:03:44 +03:00
LL | println!("☃{}", tup[0]);
2017-05-16 15:12:24 +02:00
| ^^^^^^ help: to access tuple elements, use: `tup.0`
error: aborting due to previous error
2018-03-03 15:59:40 +01:00
For more information about this error, try `rustc --explain E0608`.