mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-28 20:16:58 +03:00
rustdoc: Add impl docs to demo mod
This commit is contained in:
@@ -167,4 +167,15 @@ mod blade_runner {
|
||||
failure = "Will fail if bodies are removed from premises"
|
||||
)]
|
||||
fn construct() -> bool;
|
||||
}
|
||||
|
||||
#[doc = "Whatever"]
|
||||
impl of the_shunned_house for omnomnomy {
|
||||
#[doc(args(_unkempt_yard = "Whatever"))]
|
||||
fn dingy_house(_unkempt_yard: int) {
|
||||
}
|
||||
|
||||
fn construct() -> bool {
|
||||
fail;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user