blob: 82b0a029ba96d4a9f9df6905b903db85374fd581 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// error-pattern: mismatched types
fn main() {
let v = [[0]];
// This is ok because the outer vec is covariant with respect
// to the inner vec. If the outer vec was mutable then we
// couldn't do this.
fn f(&&v: [const [const int]]) {
}
f(v);
}
|