]> git.lizzy.rs Git - rust.git/blob - src/test/ui/mut-vstore-expr.rs
Merge commit '5988bbd24aa87732bfa1d111ba00bcdaa22c481a' into sync_cg_clif-2020-11-27
[rust.git] / src / test / ui / mut-vstore-expr.rs
1 // run-pass
2 // pretty-expanded FIXME #23616
3
4 pub fn main() {
5     let _x: &mut [isize] = &mut [ 1, 2, 3 ];
6 }