7 lines
78 B
Rust
7 lines
78 B
Rust
|
use std::sync::Arc;
|
||
|
|
||
|
pub trait A {
|
||
|
fn f();
|
||
|
fn f2(self: &Arc<Self>);
|
||
|
}
|