Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
privacy
/
auxiliary
/
priv-impl-prim-ty.rs
blob: 8ccbd3f12bf8a983331555805268e9dde3277a70 [
file
] [
log
] [
blame
] [
edit
]
pub
trait
A
{
fn
frob
(&
self
);
}
impl
A
for
isize
{
fn
frob
(&
self
)
{}
}
pub
fn
frob
<
T
:
A
>(
t
:
T
)
{
t
.
frob
();
}