mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-28 19:28:10 +00:00
10 lines
133 B
Rust
10 lines
133 B
Rust
pub struct X([u8]);
|
|
|
|
pub static Y: &'static X = {
|
|
const Y: &'static [u8] = b"";
|
|
&X(*Y)
|
|
//~^ ERROR E0277
|
|
};
|
|
|
|
fn main() {}
|