about summary refs log tree commit diff
path: root/src/test/rustdoc-ui/doc-without-codeblock.rs
diff options
context:
space:
mode:
authorOliver Scherer <github35764891676564198441@oli-obk.de>2018-11-30 16:20:07 +0100
committerOliver Scherer <github35764891676564198441@oli-obk.de>2018-12-04 10:06:05 +0100
commitff97569dd9c55ef8a89e9201a03ed41a482e030c (patch)
tree38ae84f09e96e64b5025e6891a4ef3a37a188503 /src/test/rustdoc-ui/doc-without-codeblock.rs
parent690439bb45e27f0fb76c05dcd8b5ae9adfc86c55 (diff)
downloadrust-ff97569dd9c55ef8a89e9201a03ed41a482e030c.tar.gz
rust-ff97569dd9c55ef8a89e9201a03ed41a482e030c.zip
Update doc-ui tests
Diffstat (limited to 'src/test/rustdoc-ui/doc-without-codeblock.rs')
-rw-r--r--src/test/rustdoc-ui/doc-without-codeblock.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/test/rustdoc-ui/doc-without-codeblock.rs b/src/test/rustdoc-ui/doc-without-codeblock.rs
index e047b272c41..645deff334b 100644
--- a/src/test/rustdoc-ui/doc-without-codeblock.rs
+++ b/src/test/rustdoc-ui/doc-without-codeblock.rs
@@ -1,3 +1,4 @@
+//~ ERROR Missing code example in this documentation
 // Copyright 2018 The Rust Project Developers. See the COPYRIGHT
 // file at the top-level directory of this distribution and at
 // http://rust-lang.org/COPYRIGHT.
@@ -11,10 +12,13 @@
 #![deny(missing_doc_code_examples)]
 
 /// 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() {}
 }