Move /src/test to /tests
This commit is contained in:
parent
ca855e6e42
commit
cf2dff2b1e
27592 changed files with 0 additions and 0 deletions
21
tests/rustdoc-js/impl-trait.rs
Normal file
21
tests/rustdoc-js/impl-trait.rs
Normal file
|
@ -0,0 +1,21 @@
|
|||
pub trait Aaaaaaa {}
|
||||
|
||||
impl Aaaaaaa 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
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue