Sign in
rust
/
rust
/
35bc5436d3da2aa6bee9f6ec93c19aeae5eed9f2
/
.
/
tests
/
rustdoc-js
/
self-is-not-generic.rs
blob: d6a96acb73cafb2040eb14babe703f8550fbc453 [
file
]
pub
trait
Combine
{
fn
combine
(&
self
,
other
:
&
Self
)
->
Self
;
}
pub
struct
Thing
;
impl
Combine
for
Thing
{
fn
combine
(&
self
,
other
:
&
Self
)
->
Self
{
Self
}
}