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

11 lines
170 B
Rust
Raw Normal View History

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