mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-30 04:56:25 +03:00
0932068b6c
They are defined in `rustc_query_system` but used in `rustc_query_impl`. This is very much *not* how things are supposed to be done; I suspect someone got lazy and took a shortcut at some point. This commit moves the errors into `rustc_query_impl`. This requires more lines of code to give `rustc_query_impl` an errors module, but it's worthwhile to do things in the normal way instead of a weird exceptional way.
13 lines
244 B
Rust
13 lines
244 B
Rust
// tidy-alphabetical-start
|
|
#![allow(internal_features)]
|
|
#![feature(assert_matches)]
|
|
#![feature(core_intrinsics)]
|
|
#![feature(min_specialization)]
|
|
// tidy-alphabetical-end
|
|
|
|
pub mod cache;
|
|
pub mod dep_graph;
|
|
mod error;
|
|
pub mod ich;
|
|
pub mod query;
|