about summary refs log tree commit diff
path: root/tests/rustdoc-ui/issues/issue-58473-2.rs
blob: 1653da0d139ad4431bfa33dc967af9b9b7562fa5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
//@ check-pass

#![deny(rustdoc::private_doc_tests)]

mod foo {
    /**
    Does nothing, returns `()`

    yadda-yadda-yadda
    */
    fn foo() {}
}