What does this program print?

from Box, Rc and Arc
Rust 1.98 beginner 2 min

What does this program print?

Rust
fn main() {
    let label = Box::new(String::from("alpha"));
    let moved = label;
    println!("{moved}");
}
Open in playground
Report an error