about summary refs log tree commit diff
path: root/tests/ui/lint/missing-doc-unsugard-doc-attr-10853.rs
blob: ec13ae997878b50f0cf8997e71401acd31013fa4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Regression test for https://github.com/rust-lang/rust/issues/10853

//@ check-pass

#![deny(missing_docs)]
#![doc="module"]

#[doc="struct"]
pub struct Foo;

pub fn foo() {
    #![doc="fn"]
}

#[doc="main"]
pub fn main() {}