parent
3fcf43bb0f
commit
afd8cf25f5
25
src/test/ui/type-alias-impl-trait/issue-72793.rs
Normal file
25
src/test/ui/type-alias-impl-trait/issue-72793.rs
Normal file
@ -0,0 +1,25 @@
|
||||
// check-pass
|
||||
// compile-flags: -Zmir-opt-level=3
|
||||
|
||||
#![feature(type_alias_impl_trait)]
|
||||
|
||||
trait T { type Item; }
|
||||
|
||||
type Alias<'a> = impl T<Item = &'a ()>;
|
||||
|
||||
struct S;
|
||||
impl<'a> T for &'a S {
|
||||
type Item = &'a ();
|
||||
}
|
||||
|
||||
fn filter_positive<'a>() -> Alias<'a> {
|
||||
&S
|
||||
}
|
||||
|
||||
fn with_positive(fun: impl Fn(Alias<'_>)) {
|
||||
fun(filter_positive());
|
||||
}
|
||||
|
||||
fn main() {
|
||||
with_positive(|_| ());
|
||||
}
|
Loading…
Reference in New Issue
Block a user