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

12 lines
161 B
Rust
Raw Normal View History

// error-pattern: mismatched types
fn main() {
let v = [mutable [0]];
2011-11-16 16:41:32 -06:00
fn f(&&v: [mutable [const int]]) {
v[0] = [mutable 3]
}
f(v);
}