]> git.proxmox.com Git - rustc.git/blame - src/test/ui/unsized-locals/simple-unsized-locals.rs
New upstream version 1.67.1+dfsg1
[rustc.git] / src / test / ui / unsized-locals / simple-unsized-locals.rs
CommitLineData
b7449926 1// run-pass
83c7162d 2
29967ef6 3#![allow(incomplete_features)]
b7449926 4#![feature(unsized_locals)]
041b39d2 5
7453a54e 6fn main() {
b7449926
XL
7 let foo: Box<[u8]> = Box::new(*b"foo");
8 let _foo: [u8] = *foo;
223e47cc 9}