Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
suggestions
/
auxiliary
/
not-object-safe.rs
blob: 7c9829b823ede6510af1368a6282776ee4662d4f [
file
] [
log
] [
blame
]
use
std
::
sync
::
Arc
;
pub
trait
A
{
fn
f
();
fn
f2
(
self
:
&
Arc
<
Self
>);
}