1
Fork 0
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 08:31:08 +01:00
#![feature(box_patterns)]
#![feature(with_negative_coherence)]
2020-01-22 00:42:29 +01:00
#![recursion_limit = "256"]
mod helpers;
pub mod pp;
pub mod pprust;