2017-06-09 12:05:14 -05:00
|
|
|
error[E0608]: cannot index into a value of type `({integer},)`
|
2017-02-25 07:05:30 -06:00
|
|
|
--> $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`
|
2017-02-25 07:05:30 -06:00
|
|
|
|
2017-07-02 05:49:30 -05:00
|
|
|
error: aborting due to previous error
|
2017-02-25 07:05:30 -06:00
|
|
|
|
2018-02-19 14:40:25 -06:00
|
|
|
If you want more information on this error, try using "rustc --explain E0608"
|