From 2f2623b79db33fc3bcb8bd165c549b5bba1ee240 Mon Sep 17 00:00:00 2001 From: Guillaume Gomez Date: Thu, 27 Jul 2017 20:40:20 +0200 Subject: [PATCH] Update tests --- src/test/compile-fail/issue-34222.rs | 18 ------------------ src/test/compile-fail/useless_comment.rs | 8 ++++---- 2 files changed, 4 insertions(+), 22 deletions(-) delete mode 100644 src/test/compile-fail/issue-34222.rs diff --git a/src/test/compile-fail/issue-34222.rs b/src/test/compile-fail/issue-34222.rs deleted file mode 100644 index d406f59d0a2c..000000000000 --- 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 or the MIT license -// , 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 bceec186120a..a1172bb214d0 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 {} }