Skip to content

Commit c79ffa2

Browse files
committed
Remove some unused features and error-patterns
1 parent 1cdac4a commit c79ffa2

File tree

4 files changed

+0
-10
lines changed

4 files changed

+0
-10
lines changed

src/driver.rs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
1-
// error-pattern:yummy
2-
#![feature(box_syntax)]
31
#![feature(rustc_private)]
4-
#![allow(clippy::missing_docs_in_private_items)]
52

63
// FIXME: switch to something more ergonomic here, once available.
74
// (Currently there is no way to opt into sysroot crates without `extern crate`.)

src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
// error-pattern:cargo-clippy
22
#![feature(plugin_registrar)]
33
#![feature(rustc_private)]
4-
#![allow(clippy::missing_docs_in_private_items)]
54
#![warn(rust_2018_idioms)]
65

76
// FIXME: switch to something more ergonomic here, once available.

src/main.rs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,3 @@
1-
// error-pattern:yummy
2-
#![feature(box_syntax)]
3-
#![feature(rustc_private)]
4-
#![allow(clippy::missing_docs_in_private_items)]
5-
61
use rustc_tools_util::*;
72

83
const CARGO_CLIPPY_HELP: &str = r#"Checks a package to catch common mistakes and improve your Rust code.

tests/ui/missing_const_for_fn/cant_be_const.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
//! The .stderr output of this test should be empty. Otherwise it's a bug somewhere.
44
55
#![warn(clippy::missing_const_for_fn)]
6-
#![feature(start)]
76

87
struct Game;
98

0 commit comments

Comments
 (0)