Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
rustdoc-js
/
self-is-not-generic.rs
blob: d6a96acb73cafb2040eb14babe703f8550fbc453 [
file
] [
log
] [
blame
] [
edit
]
pub
trait
Combine
{
fn
combine
(&
self
,
other
:
&
Self
)
->
Self
;
}
pub
struct
Thing
;
impl
Combine
for
Thing
{
fn
combine
(&
self
,
other
:
&
Self
)
->
Self
{
Self
}
}