rust/tests/ui/impl-trait/in-trait/variances-of-gat.rs
2023-06-29 23:08:32 -03:00

20 lines
382 B
Rust

// check-pass
// [next] compile-flags: -Zlower-impl-trait-in-trait-to-assoc-ty
// revisions: current next
#![feature(return_position_impl_trait_in_trait)]
trait Foo {}
impl Foo for () {}
trait ThreeCellFragment {
fn ext_cells<'a>(&'a self) -> impl Foo + 'a {
self.ext_adjacent_cells()
}
fn ext_adjacent_cells<'a>(&'a self) -> impl Foo + 'a;
}
fn main() {}