#![deny(missing_docs)]//! This module is used to check that all generated items are documented.
#[macro_use]externcrate error_chain;/// Inner module.
pubmodinner{error_chain!{}}error_chain!{
links {inner::Error, Test,#[doc="Doc"];}
foreign_links {::std::io::Error, Io,#[doc="Io"];}
errors {/// Doc
Test2 {}}}fnmain(){}