summaryrefslogtreecommitdiffstats
path: root/tests/ui/impl-trait/in-trait/issue-102571.rs
blob: 4fa3fdd31b5f402b48dd1061674e2a0ca0f49275 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
use std::fmt::Display;
use std::ops::Deref;

trait Foo {
    fn bar(self) -> impl Deref<Target = impl Display + ?Sized>;
}

fn foo<T: Foo>(t: T) {
    let () = t.bar();
    //~^ ERROR mismatched types
}

fn main() {}