about summary refs log tree commit diff
path: root/tests/ui/const_prop/ice-issue-111353.rs
blob: 2eba1a5e94e9eb939efd5d064f6df7925da64a39 (plain)
1
2
3
4
5
6
7
//@ build-pass
#![crate_type = "lib"]
#![feature(unsized_fn_params)]

pub fn f(mut x: [i32]) {
    x[0] = 1;
}