summaryrefslogtreecommitdiffstats
path: root/examples/18_ownership_error.rs
blob: 0e791c639d9631de0985ec3f94f5535b756e9c9d (plain) (blame)
1
2
3
4
5
6
fn main () {
    let x = box 2;
    let y = x;
    let z = x;
}