summaryrefslogtreecommitdiffstats
path: root/src/test/ui/unsized/issue-30355.rs
blob: 6ff5b37f6e5b9e98494795eed720ddfbb8c97f93 (plain)
1
2
3
4
5
6
7
8
9
pub struct X([u8]);

pub static Y: &'static X = {
    const Y: &'static [u8] = b"";
    &X(*Y)
    //~^ ERROR E0277
};

fn main() {}