mirror of
https://github.com/rust-lang/rust.git
synced 2025-01-24 21:53:56 +00:00
10 lines
102 B
Rust
10 lines
102 B
Rust
#![crate_type = "lib"]
|
|
|
|
pub struct Fish {
|
|
pub x: isize
|
|
}
|
|
|
|
impl Fish {
|
|
pub fn swim(&self) {}
|
|
}
|