about summary refs log tree commit diff
diff options
context:
space:
mode:
authorGuillaume Gomez <guillaume1.gomez@gmail.com>2017-07-27 20:40:20 +0200
committerGuillaume Gomez <guillaume1.gomez@gmail.com>2017-07-27 20:40:20 +0200
commit2f2623b79db33fc3bcb8bd165c549b5bba1ee240 (patch)
treee1087c93a11f98bb11b17411b6d2cbcd17cb9bdc
parent1cebf98e4c2654548e764e937e0b712220ffb600 (diff)
downloadrust-2f2623b79db33fc3bcb8bd165c549b5bba1ee240.tar.gz
rust-2f2623b79db33fc3bcb8bd165c549b5bba1ee240.zip
Update tests
-rw-r--r--src/test/compile-fail/issue-34222.rs18
-rw-r--r--src/test/compile-fail/useless_comment.rs8
2 files changed, 4 insertions, 22 deletions
diff --git a/src/test/compile-fail/issue-34222.rs b/src/test/compile-fail/issue-34222.rs
deleted file mode 100644
index d406f59d0a2..00000000000
--- a/src/test/compile-fail/issue-34222.rs
+++ /dev/null
@@ -1,18 +0,0 @@
-// Copyright 2017 The Rust Project Developers. See the COPYRIGHT
-// file at the top-level directory of this distribution and at
-// http://rust-lang.org/COPYRIGHT.
-//
-// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
-// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
-// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
-// option. This file may not be copied, modified, or distributed
-// except according to those terms.
-
-#![feature(rustc_attrs)]
-#![allow(warnings)]
-
-#[rustc_error]
-fn main() { //~ ERROR compilation successful
-    // crash
-    let x = 0;
-}
diff --git a/src/test/compile-fail/useless_comment.rs b/src/test/compile-fail/useless_comment.rs
index bceec186120..a1172bb214d 100644
--- a/src/test/compile-fail/useless_comment.rs
+++ b/src/test/compile-fail/useless_comment.rs
@@ -11,17 +11,17 @@
 #![deny(unused_doc_comment)]
 
 fn foo() {
-    /// a //~ ERROR unused doc comment
+    /// a //~ ERROR doc comment not used by rustdoc
     let x = 12;
 
-    /// b //~ ERROR unused doc comment
+    /// b //~ doc comment not used by rustdoc
     match x {
-        /// c //~ ERROR unused doc comment
+        /// c //~ ERROR doc comment not used by rustdoc
         1 => {},
         _ => {}
     }
 
-    /// foo //~ ERROR unused doc comment
+    /// foo //~ ERROR doc comment not used by rustdoc
     unsafe {}
 }