mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 15:06:20 +00:00
10 lines
120 B
Rust
10 lines
120 B
Rust
fn main() {
|
|
|
|
let f;
|
|
let g;
|
|
|
|
g = f;
|
|
f = Box::new(g);
|
|
//~^ ERROR overflow assigning `Box<_>` to `_`
|
|
}
|