blob: 42cac2ba4de255ef3a2a96602458577f02ee9342 [file] [log] [blame]
#![warn(clippy::toplevel_ref_arg)]
#![allow(unused)]
fn the_answer(ref mut x: u8) {
*x = 42;
}
fn main() {
let mut x = 0;
the_answer(x);
}