mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
17 lines
298 B
Rust
17 lines
298 B
Rust
#![feature(return_position_impl_trait_in_trait)]
|
|
#![allow(incomplete_features)]
|
|
|
|
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() {}
|