rust/src/test/compile-fail/mutable-huh-variance-vec2.rs

12 lines
164 B
Rust
Raw Normal View History

// error-pattern: mismatched types
fn main() {
let v = [mutable [mutable 0]];
fn f(&&v: [mutable [mutable? int]]) {
v[0] = [3]
}
f(v);
}