2011-04-05 20:23:52 -04:00
|
|
|
|
2011-06-15 11:19:50 -07:00
|
|
|
|
2011-11-18 12:39:20 +01:00
|
|
|
fn id<copy T>(t: T) -> T { ret t; }
|
2011-04-05 20:23:52 -04:00
|
|
|
|
|
|
|
fn main() {
|
2011-07-27 14:19:39 +02:00
|
|
|
let expected = @100;
|
2011-08-13 00:10:18 -07:00
|
|
|
let actual = id::<@int>(expected);
|
2011-12-22 14:42:52 -08:00
|
|
|
log_full(core::debug, *actual);
|
2011-06-15 11:19:50 -07:00
|
|
|
assert (*expected == *actual);
|
2011-08-12 06:37:25 -07:00
|
|
|
}
|