]> git.proxmox.com Git - rustc.git/blob - tests/ui/unsized/issue-30355.rs
New upstream version 1.68.2+dfsg1
[rustc.git] / tests / ui / unsized / issue-30355.rs
1 pub struct X([u8]);
2
3 pub static Y: &'static X = {
4 const Y: &'static [u8] = b"";
5 &X(*Y)
6 //~^ ERROR E0277
7 };
8
9 fn main() {}