mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-18 01:18:43 +00:00
29 lines
438 B
Rust
29 lines
438 B
Rust
#![deny(missing_docs)]
|
|
|
|
//! This module is used to check that all generated items are documented.
|
|
|
|
#[macro_use]
|
|
extern crate error_chain;
|
|
|
|
/// Inner module.
|
|
pub mod inner {
|
|
error_chain!{}
|
|
}
|
|
|
|
error_chain! {
|
|
links {
|
|
Inner(inner::Error, inner::ErrorKind) #[doc = "Doc"];
|
|
}
|
|
foreign_links {
|
|
Io(::std::io::Error) #[doc = "Io"];
|
|
}
|
|
errors {
|
|
/// Doc
|
|
Test2 {
|
|
|
|
}
|
|
}
|
|
}
|
|
|
|
fn main() {}
|