rust/src/test/rustdoc-ui/doc-without-codeblock.rs

14 lines
405 B
Rust
Raw Normal View History

2019-11-24 18:42:22 -08:00
#![deny(missing_doc_code_examples)] //~ ERROR missing code example in this documentation
2018-10-09 16:46:29 +02:00
/// Some docs.
2019-11-24 18:42:22 -08:00
//~^ ERROR missing code example in this documentation
2018-10-09 16:46:29 +02:00
pub struct Foo;
/// And then, the princess died.
2019-11-24 18:42:22 -08:00
//~^ ERROR missing code example in this documentation
2018-10-09 16:46:29 +02:00
pub mod foo {
/// Or maybe not because she saved herself!
2019-11-24 18:42:22 -08:00
//~^ ERROR missing code example in this documentation
2018-10-09 16:46:29 +02:00
pub fn bar() {}
}