]> git.lizzy.rs Git - rust.git/blob - src/librustc/hir/mod.rs
Auto merge of #67924 - RalfJung:miri, r=RalfJung
[rust.git] / src / librustc / hir / mod.rs
1 //! HIR datatypes. See the [rustc guide] for more info.
2 //!
3 //! [rustc guide]: https://rust-lang.github.io/rustc-guide/hir.html
4
5 pub mod check_attr;
6 pub mod exports;
7 pub mod intravisit;
8 pub mod map;
9 pub mod upvars;
10
11 use crate::ty::query::Providers;
12
13 pub fn provide(providers: &mut Providers<'_>) {
14     check_attr::provide(providers);
15     map::provide(providers);
16     upvars::provide(providers);
17 }