Files
rust/compiler/rustc_query_system/src/lib.rs

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

21 lines
469 B
Rust
Raw Normal View History

2020-11-14 16:35:31 +01:00
#![feature(assert_matches)]
2020-03-18 10:25:22 +01:00
#![feature(core_intrinsics)]
2020-03-19 14:13:31 +01:00
#![feature(hash_raw_entry)]
#![feature(min_specialization)]
#![feature(let_chains)]
2023-11-22 07:30:09 +01:00
#![allow(rustc::potential_query_instability, internal_features)]
2020-03-18 10:25:22 +01:00
pub mod cache;
2020-03-18 10:25:22 +01:00
pub mod dep_graph;
mod error;
2020-11-14 16:35:31 +01:00
pub mod ich;
2020-03-19 14:13:31 +01:00
pub mod query;
mod values;
pub use error::HandleCycleError;
pub use error::LayoutOfDepth;
pub use error::QueryOverflow;
pub use values::Value;
rustc_fluent_macro::fluent_messages! { "../messages.ftl" }