2013-01-31 14:40:05 -06:00
|
|
|
// aux-build:impl_privacy_xc_2.rs
|
2013-02-04 11:56:50 -06:00
|
|
|
// xfail-fast
|
2013-01-31 14:40:05 -06:00
|
|
|
|
|
|
|
extern mod impl_privacy_xc_2;
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let fish1 = impl_privacy_xc_2::Fish { x: 1 };
|
|
|
|
let fish2 = impl_privacy_xc_2::Fish { x: 2 };
|
|
|
|
io::println(if fish1.eq(&fish2) { "yes" } else { "no " });
|
|
|
|
}
|
|
|
|
|