mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-16 23:31:07 +00:00
5 lines
115 B
Rust
5 lines
115 B
Rust
fn main() {
|
|
&1 as dyn Send; //~ ERROR cast to unsized
|
|
Box::new(1) as dyn Send; //~ ERROR cast to unsized
|
|
}
|