rust/tests/ui/impl-trait/in-trait/issue-102301.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
278 B
Rust
Raw Normal View History

2022-09-26 18:13:12 -05:00
// check-pass
#![feature(return_position_impl_trait_in_trait)]
#![allow(incomplete_features)]
trait Foo<T> {
fn foo<F2: Foo<T>>(self) -> impl Foo<T>;
}
struct Bar;
impl Foo<u8> for Bar {
fn foo<F2: Foo<u8>>(self) -> impl Foo<u8> {
self
}
}
fn main() {}