blob: c67a8fe32b9ddd8faed450a7e570a13d1d4471ad (
plain)
1
2
3
4
5
6
7
8
|
error[E0608]: cannot index into a value of type `({integer},)`
--> $DIR/suggestion-non-ascii.rs:14:21
|
14 | println!("☃{}", tup[0]);
| ^^^^^^ help: to access tuple elements, use: `tup.0`
error: aborting due to previous error
|