mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
28 lines
454 B
Rust
28 lines
454 B
Rust
pub trait Aaaaaaa {}
|
|
|
|
pub trait Bbbbbbb {}
|
|
|
|
impl Aaaaaaa for () {}
|
|
impl Bbbbbbb for () {}
|
|
|
|
pub fn bbbbbbb() -> impl Aaaaaaa {
|
|
()
|
|
}
|
|
|
|
pub struct Ccccccc {}
|
|
|
|
impl Ccccccc {
|
|
pub fn ddddddd(&self) -> impl Aaaaaaa {
|
|
()
|
|
}
|
|
pub fn eeeeeee(&self, _x: impl Aaaaaaa) -> i32 {
|
|
0
|
|
}
|
|
pub fn fffffff(&self, x: impl Aaaaaaa) -> impl Aaaaaaa {
|
|
x
|
|
}
|
|
pub fn ggggggg(&self) -> impl Aaaaaaa + Bbbbbbb {
|
|
()
|
|
}
|
|
}
|