mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
11 lines
267 B
Rust
11 lines
267 B
Rust
// run-pass
|
|
// aux-build:impl_privacy_xc_2.rs
|
|
|
|
extern crate impl_privacy_xc_2;
|
|
|
|
pub fn main() {
|
|
let fish1 = impl_privacy_xc_2::Fish { x: 1 };
|
|
let fish2 = impl_privacy_xc_2::Fish { x: 2 };
|
|
if fish1.eq(&fish2) { println!("yes") } else { println!("no") };
|
|
}
|