]> git.proxmox.com Git - rustc.git/blob - src/test/rustdoc-ui/doc-without-codeblock.rs
New upstream version 1.52.0~beta.3+dfsg1
[rustc.git] / src / test / rustdoc-ui / doc-without-codeblock.rs
1 #![deny(rustdoc::missing_doc_code_examples)] //~ ERROR missing code example in this documentation
2
3 /// Some docs.
4 //~^ ERROR missing code example in this documentation
5 pub struct Foo;
6
7 /// And then, the princess died.
8 //~^ ERROR missing code example in this documentation
9 pub mod foo {
10 /// Or maybe not because she saved herself!
11 //~^ ERROR missing code example in this documentation
12 pub fn bar() {}
13 }