Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
// run-pass
fn f(x: &isize) -> &isize {
return &*x;
}
pub fn main() {
let three = &3;
println!("{}", *f(three));