Skip to main content
Journey Uncommon Logo
JourneyUncommon
easyRustownership and moveSingle-choice MCQ

After `let b = a;` where `a` is an `i32`, is `a` still usable?

let a = 10; let b = a; println!("a={} b={}", a, b);