]> git.lizzy.rs Git - rust.git/commitdiff
Update tests
authorGuillaume Gomez <guillaume1.gomez@gmail.com>
Thu, 27 Jul 2017 18:40:20 +0000 (20:40 +0200)
committerGuillaume Gomez <guillaume1.gomez@gmail.com>
Thu, 27 Jul 2017 18:40:20 +0000 (20:40 +0200)
src/test/compile-fail/issue-34222.rs [deleted file]
src/test/compile-fail/useless_comment.rs

diff --git a/src/test/compile-fail/issue-34222.rs b/src/test/compile-fail/issue-34222.rs
deleted file mode 100644 (file)
index d406f59..0000000
+++ /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;
-}
index bceec186120a7245f1d291c2167cc83e391fa9aa..a1172bb214d0a1ae7f44a1e01da02d89234b1a51 100644 (file)
 #![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 {}
 }