c4075492ad
Means that we'll need another snapshot to rid the language of `[const T]`.
8 lines
76 B
Rust
8 lines
76 B
Rust
fn f(_: &const [int]) {}
|
|
|
|
fn main() {
|
|
let v = [ 1, 2, 3 ];
|
|
f(v);
|
|
}
|
|
|