rustfmt tests/rustdoc-js/
.
This commit is contained in:
parent
98d65d62c5
commit
c6fb703c05
28 changed files with 240 additions and 133 deletions
|
@ -7,13 +7,17 @@ pub fn pinky(input: &usize, manage: usize) {
|
|||
pub struct Thumb;
|
||||
|
||||
impl Thumb {
|
||||
pub fn up(&self, finger: Thumb) { unimplemented!() }
|
||||
pub fn up(&self, finger: Thumb) {
|
||||
unimplemented!()
|
||||
}
|
||||
}
|
||||
|
||||
pub enum Index {}
|
||||
|
||||
impl Index {
|
||||
pub fn point(self, data: &Index) { unimplemented!() }
|
||||
pub fn point(self, data: &Index) {
|
||||
unimplemented!()
|
||||
}
|
||||
}
|
||||
|
||||
pub union Ring {
|
||||
|
@ -22,11 +26,15 @@ pub union Ring {
|
|||
}
|
||||
|
||||
impl Ring {
|
||||
pub fn wear(&mut self, extra: &Ring) { unimplemented!() }
|
||||
pub fn wear(&mut self, extra: &Ring) {
|
||||
unimplemented!()
|
||||
}
|
||||
}
|
||||
|
||||
extern "C" {
|
||||
pub type Middle;
|
||||
}
|
||||
|
||||
pub fn show(left: &&mut Middle, right: &mut &Middle) { unimplemented!() }
|
||||
pub fn show(left: &&mut Middle, right: &mut &Middle) {
|
||||
unimplemented!()
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue