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
|
|
}
|