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.

14 lines
413 B
Rust
Raw Normal View History

#![cfg_attr(not(bootstrap), allow(internal_features))]
#![cfg_attr(not(bootstrap), feature(rustdoc_internals))]
#![cfg_attr(not(bootstrap), doc(rust_logo))]
#![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;