]> git.proxmox.com Git - rustc.git/blob - src/test/ui/unsized-locals/simple-unsized-locals.rs
New upstream version 1.49.0~beta.4+dfsg1
[rustc.git] / src / test / ui / unsized-locals / simple-unsized-locals.rs
1 // run-pass
2
3 #![allow(incomplete_features)]
4 #![feature(unsized_locals)]
5
6 fn main() {
7 let foo: Box<[u8]> = Box::new(*b"foo");
8 let _foo: [u8] = *foo;
9 }