2013-03-11 15:47:23 -05:00
|
|
|
|
2014-02-07 13:08:32 -06:00
|
|
|
// Copyright 2013-2014 The Rust Project Developers. See the COPYRIGHT
|
2013-03-11 15:47:23 -05:00
|
|
|
// 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-02-23 21:11:19 -06:00
|
|
|
use std::hash::hash;
|
|
|
|
|
2014-08-01 18:42:13 -05:00
|
|
|
// testing multiple separate deriving attributes
|
2014-12-30 22:32:49 -06:00
|
|
|
#[derive(PartialEq)]
|
|
|
|
#[derive(Clone)]
|
|
|
|
#[derive(Hash)]
|
2013-03-11 15:47:23 -05:00
|
|
|
struct Foo {
|
|
|
|
bar: uint,
|
|
|
|
baz: int
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn main() {
|
|
|
|
let a = Foo {bar: 4, baz: -3};
|
|
|
|
|
2014-05-29 19:45:07 -05:00
|
|
|
a == a; // check for PartialEq impl w/o testing its correctness
|
2013-03-11 15:47:23 -05:00
|
|
|
a.clone(); // check for Clone impl w/o testing its correctness
|
2014-02-23 21:11:19 -06:00
|
|
|
hash(&a); // check for Hash impl w/o testing its correctness
|
2013-03-11 15:47:23 -05:00
|
|
|
}
|