]> git.lizzy.rs Git - rust.git/blob - src/librustc_borrowck/lib.rs
Rollup merge of #59806 - phansch:compiletest_docs2, r=oli-obk
[rust.git] / src / librustc_borrowck / lib.rs
1 #![doc(html_root_url = "https://doc.rust-lang.org/nightly/")]
2
3 #![allow(non_camel_case_types)]
4 #![deny(rust_2018_idioms)]
5 #![cfg_attr(not(stage0), deny(internal))]
6
7 #![feature(nll)]
8
9 #![recursion_limit="256"]
10
11 #[macro_use]
12 extern crate rustc;
13
14 pub use borrowck::check_crate;
15 pub use borrowck::build_borrowck_dataflow_data_for_fn;
16
17 mod borrowck;
18
19 pub mod graphviz;
20
21 mod dataflow;
22
23 pub use borrowck::provide;