]> git.lizzy.rs Git - rust.git/blob - src/test/ui/mut-vstore-expr.rs
Merge commit '09bd400243ed6f7059fedc0c1623aae3792521d6' into clippyup
[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 }