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

16 lines
406 B
Rust
Raw Normal View History

2018-11-30 16:20:07 +01:00
//~ ERROR Missing code example in this documentation
2018-10-09 16:46:29 +02:00
#![deny(missing_doc_code_examples)]
/// 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() {}
}