mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +00:00
14 lines
170 B
Rust
14 lines
170 B
Rust
//@ known-bug: #120482
|
|
//@ edition:2021
|
|
#![feature(object_safe_for_dispatch)]
|
|
|
|
trait B {
|
|
fn bar(&self, x: &Self);
|
|
}
|
|
|
|
trait A {
|
|
fn g(new: B) -> B;
|
|
}
|
|
|
|
fn main() {}
|