7 lines
58 B
Rust
7 lines
58 B
Rust
pub trait Foo {
|
|
fn foo() {}
|
|
}
|
|
|
|
impl Foo for isize {
|
|
}
|