You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fn main() {
let t:u32 = 0;
let v = vec![42];
println!("{}", v[t]);
}
I would argue that putting the first piece of information which when fixed, leads to a fix of the problem, and spelling out the ":", would make the error message more helpful.
Instead of trait std::vec::Vec<{integer}>: std::ops::Index not satisfied it could be The trait std::ops::Indexis not implemented forstd::vec::Vec<({integer}, {integer})>``
Given this code:
I would argue that putting the first piece of information which when fixed, leads to a fix of the problem, and spelling out the ":", would make the error message more helpful.
Instead of
trait
std::vec::Vec<{integer}>: std::ops::Indexnot satisfied
it could beThe trait
std::ops::Indexis not implemented for
std::vec::Vec<({integer}, {integer})>``rustc nightly
rustc 1.14.0-nightly (16eeeac78 2016-10-18)
The text was updated successfully, but these errors were encountered: