mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-14 02:49:40 +00:00
14 lines
217 B
Rust
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() {}
|