rust/src/test/run-pass/regions-borrow-uniq.rs

10 lines
108 B
Rust
Raw Normal View History

2012-04-13 15:36:39 -05:00
fn foo(x: &uint) -> uint {
*x
}
fn main() {
let p = ~3u;
let r = foo(p);
assert r == 3u;
}