summaryrefslogtreecommitdiffstats
path: root/src/test/ui/use/use-after-move-based-on-type.rs
blob: ba7aa0345e19c81b28d23d116cf670ed9f14c651 (plain)
1
2
3
4
5
fn main() {
    let x = "Hello!".to_string();
    let _y = x;
    println!("{}", x); //~ ERROR borrow of moved value
}