0ac1195ee0
That is, change `diagnostic_outside_of_impl` and `untranslatable_diagnostic` from `allow` to `deny`, because more than half of the compiler has be converted to use translated diagnostics. This commit removes more `deny` attributes than it adds `allow` attributes, which proves that this change is warranted.
8 lines
147 B
Rust
8 lines
147 B
Rust
#![allow(internal_features)]
|
|
#![feature(rustdoc_internals)]
|
|
#![doc(rust_logo)]
|
|
#![feature(box_patterns)]
|
|
|
|
mod helpers;
|
|
pub mod pp;
|
|
pub mod pprust;
|