mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
11 lines
231 B
Rust
11 lines
231 B
Rust
//@ known-bug: #57276
|
|
|
|
#![feature(arbitrary_self_types, dispatch_from_dyn)]
|
|
|
|
use std::ops::{Deref, DispatchFromDyn};
|
|
|
|
trait Trait<T: Deref<Target = Self> + DispatchFromDyn<T>> {
|
|
fn foo(self: T) -> dyn Trait<T>;
|
|
}
|
|
|
|
fn main() {}
|