2019-07-02 16:30:28 -05:00
|
|
|
// build-pass (FIXME(62277): could be check-pass?)
|
2015-03-22 15:13:15 -05:00
|
|
|
// pretty-expanded FIXME #23616
|
|
|
|
|
2014-11-01 20:12:13 -05:00
|
|
|
#![deny(missing_docs)]
|
2014-04-14 10:30:31 -05:00
|
|
|
#![doc="module"]
|
2013-12-08 20:41:24 -06:00
|
|
|
|
|
|
|
#[doc="struct"]
|
|
|
|
pub struct Foo;
|
|
|
|
|
|
|
|
pub fn foo() {
|
2014-04-14 10:30:31 -05:00
|
|
|
#![doc="fn"]
|
2013-12-08 20:41:24 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
#[doc="main"]
|
|
|
|
pub fn main() {}
|