mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +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) {}
|
|
}
|