2012-12-11 01:32:48 +00:00
|
|
|
// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2012-04-23 22:23:20 +00:00
|
|
|
// xfail-fast - check-fast doesn't understand aux-build
|
|
|
|
// aux-build:cci_borrow_lib.rs
|
|
|
|
|
2012-09-12 00:46:20 +00:00
|
|
|
extern mod cci_borrow_lib;
|
2012-09-05 19:32:05 +00:00
|
|
|
use cci_borrow_lib::foo;
|
2012-04-23 22:23:20 +00:00
|
|
|
|
2013-01-30 23:56:40 +00:00
|
|
|
pub fn main() {
|
2012-04-23 22:23:20 +00:00
|
|
|
let p = @22u;
|
|
|
|
let r = foo(p);
|
2013-09-30 02:23:57 +00:00
|
|
|
info2!("r={}", r);
|
2013-05-19 02:02:45 +00:00
|
|
|
assert_eq!(r, 22u);
|
2012-04-23 22:23:20 +00:00
|
|
|
}
|