rust/tests/rustdoc-js/impl-trait.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
454 B
Rust
Raw Normal View History

2022-06-01 02:12:02 +08:00
pub trait Aaaaaaa {}
pub trait Bbbbbbb {}
2022-06-01 02:12:02 +08:00
impl Aaaaaaa for () {}
impl Bbbbbbb for () {}
2022-06-01 02:12:02 +08:00
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 {
()
}
2022-06-01 02:12:02 +08:00
}