Sign in
fuchsia
/
third_party
/
github.com
/
rust-lang
/
rust
/
HEAD
/
.
/
tests
/
ui
/
lifetimes
/
conflicting-bounds.rs
blob: 62240792afd7688cfbf32ed54aca121c137a824c [
file
] [
log
] [
blame
]
//~ ERROR type annotations needed: cannot satisfy `Self: Gen<'source>`
pub
trait
Gen
<
'
source
>
{
type
Output
;
fn
gen
<
T
>(&
self
)
->
T
where
Self
:
for
<
's> Gen<'
s
,
Output
=
T
>;
}
fn
main
()
{}