mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
14 lines
160 B
Rust
14 lines
160 B
Rust
//@ known-bug: #120241
|
|
//@ edition:2021
|
|
#![feature(object_safe_for_dispatch)]
|
|
|
|
trait B {
|
|
fn f(a: A) -> A;
|
|
}
|
|
|
|
trait A {
|
|
fn g(b: B) -> B;
|
|
}
|
|
|
|
fn main() {}
|