Sign in
fuchsia
/
third_party
/
rust
/
65cb5deedb30773e8f3c76acc45eafbf3f0081a9
/
.
/
tests
/
crashes
/
125249.rs
blob: 1cf6338a0d622aeb6e28d2f5075c65b721f1dd4b [
file
] [
log
] [
blame
]
//@ known-bug: rust-lang/rust#125185
#![
feature
(
return_position_impl_trait_in_trait
,
return_type_notation
)]
trait
IntFactory
{
fn
stream
(&
self
)
->
impl
IntFactory
<
stream
(..):
IntFactory
<
stream
(..):
Send
>
+
Send
>;
}
pub
fn
main
()
{}