rust/src/test/auxiliary/impl_privacy_xc_1.rs
2013-05-03 20:01:42 -04:00

10 lines
96 B
Rust

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