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