mirror of
https://git.proxmox.com/git/rustc
synced 2025-12-08 03:09:16 +00:00
14 lines
413 B
Rust
14 lines
413 B
Rust
#![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)]
|
|
#![feature(box_patterns)]
|
|
#![feature(with_negative_coherence)]
|
|
#![recursion_limit = "256"]
|
|
|
|
mod helpers;
|
|
pub mod pp;
|
|
pub mod pprust;
|