10 lines
81 B
Rust
10 lines
81 B
Rust
|
pub trait Trait {
|
||
|
fn foo();
|
||
|
}
|
||
|
|
||
|
struct Foo;
|
||
|
|
||
|
impl Foo {
|
||
|
pub fn new() {}
|
||
|
}
|