rust/tests/ui/impl-trait/issues/issue-82139.rs
2023-01-11 09:32:08 +00:00

20 lines
335 B
Rust

#![feature(type_alias_impl_trait)]
trait Trait {
type Associated;
fn func() -> Self::Associated;
}
trait Bound {}
pub struct Struct;
impl Trait for Struct {
type Associated = impl Bound;
fn func() -> Self::Associated {
Some(42).map(|_| j) //~ ERROR cannot find value `j` in this scope
}
}
fn main() {}