rust/tests/ui/borrowck/borrowck-lend-args.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
306 B
Rust
Raw Normal View History

// run-pass
#![allow(dead_code)]
// pretty-expanded FIXME #23616
fn borrow(_v: &isize) {}
fn borrow_from_arg_imm_ref(v: Box<isize>) {
borrow(&*v);
}
fn borrow_from_arg_mut_ref(v: &mut Box<isize>) {
borrow(&**v);
}
fn borrow_from_arg_copy(v: Box<isize>) {
borrow(&*v);
}
pub fn main() {
}