summaryrefslogtreecommitdiffstats
path: root/src/test/ui/parser/doc-after-struct-field.rs
blob: 5b6f080360336c48dd3bb2639dc1d3d0587d7c00 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
struct X {
    a: u8 /** document a */,
    //~^ ERROR found a documentation comment that doesn't document anything
    //~| HELP maybe a comment was intended
}

struct Y {
    a: u8 /// document a
    //~^ ERROR found a documentation comment that doesn't document anything
    //~| HELP maybe a comment was intended
}

fn main() {
    let x = X { a: 1 };
    let y = Y { a: 1 };
}