rust/src/test/auxiliary/impl_privacy_xc_1.rs
2013-06-01 09:18:27 -07:00

10 lines
96 B
Rust

#[crate_type = "lib"];
pub struct Fish {
x: int
}
impl Fish {
pub fn swim(&self) {}
}