2019-11-04 00:00:00 +00:00
|
|
|
//@ check-pass
|
2015-03-22 13:13:15 -07:00
|
|
|
|
2014-11-01 21:12:13 -04:00
|
|
|
#![deny(missing_docs)]
|
2014-04-14 21:00:31 +05:30
|
|
|
#![doc="module"]
|
2013-12-08 18:41:24 -08:00
|
|
|
|
|
|
|
|
#[doc="struct"]
|
|
|
|
|
pub struct Foo;
|
|
|
|
|
|
|
|
|
|
pub fn foo() {
|
2014-04-14 21:00:31 +05:30
|
|
|
#![doc="fn"]
|
2013-12-08 18:41:24 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[doc="main"]
|
|
|
|
|
pub fn main() {}
|