5 lines
96 B
Rust
5 lines
96 B
Rust
|
fn main() {
|
||
|
let x: i32 = 1;
|
||
|
println!("{:?}", x.count()); //~ ERROR is not an iterator
|
||
|
}
|