2016-04-26 10:51:14 -07:00
|
|
|
#![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 }
|
|
|
|
|
}
|
2015-03-18 22:05:24 +01:00
|
|
|
}
|