blob: 6ff5b37f6e5b9e98494795eed720ddfbb8c97f93 [file] [log] [blame]
pub struct X([u8]);
pub static Y: &'static X = {
const Y: &'static [u8] = b"";
&X(*Y)
//~^ ERROR E0277
};
fn main() {}