rust/tests/ui/privacy/auxiliary/impl_privacy_xc_2.rs
2023-01-11 09:32:08 +00:00

14 lines
235 B
Rust

#![crate_type = "lib"]
pub struct Fish {
pub x: isize
}
mod unexported {
use super::Fish;
impl PartialEq for Fish {
fn eq(&self, _: &Fish) -> bool { true }
fn ne(&self, _: &Fish) -> bool { false }
}
}