rust/src/test/auxiliary/impl_privacy_xc_1.rs

10 lines
96 B
Rust
Raw Normal View History

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