rust/tests/ui/impl-trait/in-trait/issue-102571.rs
2023-10-24 15:27:06 +00:00

14 lines
217 B
Rust

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() {}