blob: 99d1b792fea9aadc020cbe65981cf70c23615382 [file] [log] [blame]
// build-pass
#![crate_type = "lib"]
#![feature(unsized_fn_params)]
pub fn f(mut x: [i32]) {
x[0] = 1;
}