2023-10-16 22:22:17 +00:00
|
|
|
#![cfg_attr(not(bootstrap), allow(internal_features))]
|
|
|
|
#![cfg_attr(not(bootstrap), feature(rustdoc_internals))]
|
|
|
|
#![cfg_attr(not(bootstrap), doc(rust_logo))]
|
2022-08-18 18:27:29 +00:00
|
|
|
#![deny(rustc::untranslatable_diagnostic)]
|
|
|
|
#![deny(rustc::diagnostic_outside_of_impl)]
|
2022-05-01 17:58:24 +00:00
|
|
|
#![feature(associated_type_bounds)]
|
2021-01-29 07:31:08 +00:00
|
|
|
#![feature(box_patterns)]
|
2022-05-01 17:58:24 +00:00
|
|
|
#![feature(with_negative_coherence)]
|
2020-01-21 23:42:29 +00:00
|
|
|
#![recursion_limit = "256"]
|
2020-01-11 16:02:46 +00:00
|
|
|
|
|
|
|
mod helpers;
|
|
|
|
pub mod pp;
|
|
|
|
pub mod pprust;
|