mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 23:04:33 +00:00
11 lines
231 B
Rust
11 lines
231 B
Rust
// run-pass
|
|
|
|
fn id<T:Send>(t: T) -> T { return t; }
|
|
|
|
pub fn main() {
|
|
let expected: Box<_> = Box::new(100);
|
|
let actual = id::<Box<isize>>(expected.clone());
|
|
println!("{}", *actual);
|
|
assert_eq!(*expected, *actual);
|
|
}
|