]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/struct-lit-functional-no-fields.rs
9212a72e5d41735bdb149fb4f734137e8592ed6c
[rust.git] / src / test / run-pass / struct-lit-functional-no-fields.rs
1 // Copyright 2014 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 #[deriving(Show,PartialEq,Clone)]
12 struct Foo<T> {
13     bar: T,
14     baz: T
15 }
16
17 pub fn main() {
18     let foo = Foo {
19         bar: 0,
20         baz: 1
21     };
22
23     let foo_ = foo.clone();
24     let foo = Foo { ..foo };
25     assert_eq!(foo, foo_);
26
27     let foo = Foo {
28         bar: "one".to_string(),
29         baz: "two".to_string()
30     };
31
32     let foo_ = foo.clone();
33     let foo = Foo { ..foo };
34     assert_eq!(foo, foo_);
35 }