blob: 7c9829b823ede6510af1368a6282776ee4662d4f [file] [log] [blame] [edit]
use std::sync::Arc;
pub trait A {
fn f();
fn f2(self: &Arc<Self>);
}