rust/src/test/ui/span/suggestion-non-ascii.stderr

10 lines
374 B
Plaintext
Raw Normal View History

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