mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-03 01:08:18 +00:00
11 lines
117 B
Rust
11 lines
117 B
Rust
pub enum Foo {
|
|
A,
|
|
B(isize),
|
|
C { a: isize },
|
|
}
|
|
|
|
impl Foo {
|
|
pub fn foo() {}
|
|
pub fn bar(&self) {}
|
|
}
|