2019-07-27 00:54:25 +03:00
|
|
|
//@ run-pass
|
2013-01-31 12:40:05 -08:00
|
|
|
//@ aux-build:impl_privacy_xc_2.rs
|
|
|
|
|
2014-02-14 10:10:06 -08:00
|
|
|
extern crate impl_privacy_xc_2;
|
2013-01-31 12:40:05 -08:00
|
|
|
|
2013-02-17 14:36:43 -08:00
|
|
|
pub fn main() {
|
2013-01-31 12:40:05 -08:00
|
|
|
let fish1 = impl_privacy_xc_2::Fish { x: 1 };
|
|
|
|
let fish2 = impl_privacy_xc_2::Fish { x: 2 };
|
2014-01-09 21:06:55 +11:00
|
|
|
if fish1.eq(&fish2) { println!("yes") } else { println!("no") };
|
2013-01-31 12:40:05 -08:00
|
|
|
}
|