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

14 lines
405 B
Rust
Raw Normal View History

2019-05-17 13:39:20 +02:00
#![deny(missing_doc_code_examples)] //~ ERROR Missing code example in this documentation
2018-10-09 16:46:29 +02:00
/// Some docs.
2018-11-30 16:20:07 +01:00
//~^ ERROR Missing code example in this documentation
2018-10-09 16:46:29 +02:00
pub struct Foo;
/// And then, the princess died.
2018-11-30 16:20:07 +01: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!
2018-11-30 16:20:07 +01:00
//~^ ERROR Missing code example in this documentation
2018-10-09 16:46:29 +02:00
pub fn bar() {}
}