1
Fork 0

cleanup: commented lints

This commit is contained in:
Rejyr 2022-08-23 10:41:02 -04:00
parent 257cf03e2c
commit 1693993d8f
4 changed files with 0 additions and 11 deletions

View file

@ -1,6 +1,3 @@
// #![deny(rustc::diagnostic_outside_of_impl)]
// #![deny(rustc::untranslatable_diagnostic)]
//
//! Lints in the Rust compiler.
//!
//! This contains lints which can feasibly be implemented as their own

View file

@ -1,6 +1,3 @@
// #![deny(rustc::diagnostic_outside_of_impl)]
// #![deny(rustc::untranslatable_diagnostic)]
//
//! Implementation of lint checking.
//!
//! The lint checking is mostly consolidated into one pass which runs

View file

@ -1,6 +1,3 @@
// #![deny(rustc::diagnostic_outside_of_impl)]
// #![deny(rustc::untranslatable_diagnostic)]
//
use crate::context::{CheckLintNameResult, LintStore};
use crate::late::unerased_lint_store;
use rustc_ast as ast;

View file

@ -36,8 +36,6 @@
#![feature(let_else)]
#![feature(never_type)]
#![recursion_limit = "256"]
// #![deny(rustc::diagnostic_outside_of_impl)]
// #![deny(rustc::untranslatable_diagnostic)]
#[macro_use]
extern crate rustc_middle;