mirror of
https://github.com/rust-lang/rust.git
synced 2025-01-08 13:55:25 +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) {}
|
|
}
|