Skip to main content
Journey Uncommon Logo
JourneyUncommon
easyRustborrowing & and &mutSingle-choice MCQ

What does `*` do in `*r` when `r` has type `&i32`?

fn main() { let x = 5; let r = &x; let y = *r + 1; println!("{}", y); }