about summary refs log tree commit diff
path: root/tests/ui/cross-crate/cci_borrow.rs
blob: e132be318f43265cc3da5154616d9a29caca4ace (plain)
1
2
3
4
5
6
7
8
9
10
11
12
//@ 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);
}