2014-01-29 02:33:37 -06:00
|
|
|
// Copyright 2014 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.
|
|
|
|
|
2014-05-29 19:45:07 -05:00
|
|
|
#[deriving(Show,PartialEq,Clone)]
|
2014-01-29 02:33:37 -06:00
|
|
|
struct Foo<T> {
|
|
|
|
bar: T,
|
|
|
|
baz: T
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn main() {
|
|
|
|
let foo = Foo {
|
2014-04-21 16:58:52 -05:00
|
|
|
bar: 0i,
|
|
|
|
baz: 1i
|
2014-01-29 02:33:37 -06:00
|
|
|
};
|
|
|
|
|
|
|
|
let foo_ = foo.clone();
|
|
|
|
let foo = Foo { ..foo };
|
|
|
|
assert_eq!(foo, foo_);
|
|
|
|
|
|
|
|
let foo = Foo {
|
2014-05-25 05:10:11 -05:00
|
|
|
bar: "one".to_string(),
|
|
|
|
baz: "two".to_string()
|
2014-01-29 02:33:37 -06:00
|
|
|
};
|
|
|
|
|
|
|
|
let foo_ = foo.clone();
|
|
|
|
let foo = Foo { ..foo };
|
|
|
|
assert_eq!(foo, foo_);
|
|
|
|
}
|