rust/compiler/rustc_ast_pretty/src/lib.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
256 B
Rust
Raw Normal View History

#![deny(rustc::untranslatable_diagnostic)]
#![deny(rustc::diagnostic_outside_of_impl)]
#![feature(associated_type_bounds)]
2021-01-29 07:31:08 +00:00
#![feature(box_patterns)]
#![feature(with_negative_coherence)]
2020-01-21 23:42:29 +00:00
#![recursion_limit = "256"]
mod helpers;
pub mod pp;
pub mod pprust;