mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-28 15:56:08 +00:00
13 lines
221 B
Rust
13 lines
221 B
Rust
// run-pass
|
|
// aux-build:cci_borrow_lib.rs
|
|
|
|
extern crate cci_borrow_lib;
|
|
use cci_borrow_lib::foo;
|
|
|
|
pub fn main() {
|
|
let p: Box<_> = Box::new(22);
|
|
let r = foo(&*p);
|
|
println!("r={}", r);
|
|
assert_eq!(r, 22);
|
|
}
|