mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-13 23:42:56 +00:00
14 lines
163 B
Rust
14 lines
163 B
Rust
//@ known-bug: #120241
|
|
//@ edition:2021
|
|
#![feature(dyn_compatible_for_dispatch)]
|
|
|
|
trait B {
|
|
fn f(a: A) -> A;
|
|
}
|
|
|
|
trait A {
|
|
fn g(b: B) -> B;
|
|
}
|
|
|
|
fn main() {}
|