about summary refs log tree commit diff
path: root/src/test/rustdoc-ui/doc-without-codeblock.rs
blob: aa3f539ba32a314c3961181b4e54fabbbf807e67 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//~ ERROR Missing code example in this documentation

#![deny(missing_doc_code_examples)]

/// Some docs.
//~^ ERROR Missing code example in this documentation
pub struct Foo;

/// And then, the princess died.
//~^ ERROR Missing code example in this documentation
pub mod foo {
    /// Or maybe not because she saved herself!
    //~^ ERROR Missing code example in this documentation
    pub fn bar() {}
}