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