rust/src/test/rustdoc-ui/doc-without-codeblock.rs
2019-05-18 12:45:29 +02:00

13 lines
405 B
Rust

#![deny(missing_doc_code_examples)] //~ ERROR Missing code example in this documentation
/// 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() {}
}