mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +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);
|
|
}
|