Skip to content

Commit 9d4fdba

Browse files
committed
Rename rustc guide to rustc dev guide
1 parent 0037f4e commit 9d4fdba

File tree

40 files changed

+83
-83
lines changed

40 files changed

+83
-83
lines changed

CONTRIBUTING.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -434,7 +434,7 @@ For people new to Rust, and just starting to contribute, or even for
434434
more seasoned developers, some useful places to look for information
435435
are:
436436

437-
* The [rustc guide] contains information about how various parts of the compiler work and how to contribute to the compiler
437+
* The [rustc dev guide] contains information about how various parts of the compiler work and how to contribute to the compiler
438438
* [Rust Forge][rustforge] contains additional documentation, including write-ups of how to achieve common tasks
439439
* The [Rust Internals forum][rif], a place to ask questions and
440440
discuss Rust's internals
@@ -448,7 +448,7 @@ are:
448448
* **Google!** ([search only in Rust Documentation][gsearchdocs] to find types, traits, etc. quickly)
449449
* Don't be afraid to ask! The Rust community is friendly and helpful.
450450

451-
[rustc guide]: https://rust-lang.github.io/rustc-dev-guide/about-this-guide.html
451+
[rustc dev guide]: https://rust-lang.github.io/rustc-dev-guide/about-this-guide.html
452452
[gdfrustc]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc/
453453
[gsearchdocs]: https://www.google.com/search?q=site:doc.rust-lang.org+your+query+here
454454
[rif]: http://internals.rust-lang.org

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ chapter][rustcguidebuild] of the rustc-dev-guide instead of this section._
1919

2020
The Rust build system has a Python script called `x.py` to bootstrap building
2121
the compiler. More information about it may be found by running `./x.py --help`
22-
or reading the [rustc guide][rustcguidebuild].
22+
or reading the [rustc dev guide][rustcguidebuild].
2323

2424
[rustcguidebuild]: https://rust-lang.github.io/rustc-dev-guide/building/how-to-build-and-run.html
2525

@@ -249,13 +249,13 @@ Most real-time collaboration happens in a variety of channels on the
249249
community, documentation, and all major contribution areas in the Rust ecosystem.
250250
A good place to ask for help would be the #help channel.
251251
252-
The [rustc guide] might be a good place to start if you want to find out how
252+
The [rustc dev guide] might be a good place to start if you want to find out how
253253
various parts of the compiler work.
254254
255255
Also, you may find the [rustdocs for the compiler itself][rustdocs] useful.
256256
257257
[rust-discord]: https://discord.gg/rust-lang
258-
[rustc guide]: https://rust-lang.github.io/rustc-dev-guide/about-this-guide.html
258+
[rustc dev guide]: https://rust-lang.github.io/rustc-dev-guide/about-this-guide.html
259259
[rustdocs]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc/
260260
261261
## License

src/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ This directory contains the source code of the rust project, including:
33
- `libstd`
44
- Various submodules for tools, like rustdoc, rls, etc.
55

6-
For more information on how various parts of the compiler work, see the [rustc guide].
6+
For more information on how various parts of the compiler work, see the [rustc dev guide].
77

8-
[rustc guide]: https://rust-lang.github.io/rustc-dev-guide/about-this-guide.html
8+
[rustc dev guide]: https://rust-lang.github.io/rustc-dev-guide/about-this-guide.html

src/librustc/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
For more information about how rustc works, see the [rustc guide].
1+
For more information about how rustc works, see the [rustc dev guide].
22

3-
[rustc guide]: https://rust-lang.github.io/rustc-dev-guide/
3+
[rustc dev guide]: https://rust-lang.github.io/rustc-dev-guide/

src/librustc/dep_graph/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
To learn more about how dependency tracking works in rustc, see the [rustc
22
guide].
33

4-
[rustc guide]: https://rust-lang.github.io/rustc-dev-guide/query.html
4+
[rustc dev guide]: https://rust-lang.github.io/rustc-dev-guide/query.html

src/librustc/dep_graph/graph.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ impl DepGraph {
174174
/// what state they have access to. In particular, we want to
175175
/// prevent implicit 'leaks' of tracked state into the task (which
176176
/// could then be read without generating correct edges in the
177-
/// dep-graph -- see the [rustc guide] for more details on
177+
/// dep-graph -- see the [rustc dev guide] for more details on
178178
/// the dep-graph). To this end, the task function gets exactly two
179179
/// pieces of state: the context `cx` and an argument `arg`. Both
180180
/// of these bits of state must be of some type that implements
@@ -194,7 +194,7 @@ impl DepGraph {
194194
/// - If you need 3+ arguments, use a tuple for the
195195
/// `arg` parameter.
196196
///
197-
/// [rustc guide]: https://rust-lang.github.io/rustc-dev-guide/incremental-compilation.html
197+
/// [rustc dev guide]: https://rust-lang.github.io/rustc-dev-guide/incremental-compilation.html
198198
pub fn with_task<'a, C, A, R>(
199199
&self,
200200
key: DepNode,

src/librustc/hir/mod.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
//! HIR datatypes. See the [rustc guide] for more info.
1+
//! HIR datatypes. See the [rustc dev guide] for more info.
22
//!
3-
//! [rustc guide]: https://rust-lang.github.io/rustc-dev-guide/hir.html
3+
//! [rustc dev guide]: https://rust-lang.github.io/rustc-dev-guide/hir.html
44
55
pub mod exports;
66
pub mod map;

src/librustc/infer/canonical.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
//! `instantiate_query_result` method.
1818
//!
1919
//! For a more detailed look at what is happening here, check
20-
//! out the [chapter in the rustc guide][c].
20+
//! out the [chapter in the rustc dev guide][c].
2121
//!
2222
//! [c]: https://rust-lang.github.io/rustc-dev-guide/traits/canonicalization.html
2323

src/librustc/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@
1414
//! (or `tcx`), which is the central context during most of
1515
//! compilation, containing the interners and other things.
1616
//!
17-
//! For more information about how rustc works, see the [rustc guide].
17+
//! For more information about how rustc works, see the [rustc dev guide].
1818
//!
19-
//! [rustc guide]: https://rust-lang.github.io/rustc-dev-guide/
19+
//! [rustc dev guide]: https://rust-lang.github.io/rustc-dev-guide/
2020
//!
2121
//! # Note
2222
//!

src/librustc/middle/region.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
//! the parent links in the region hierarchy.
33
//!
44
//! For more information about how MIR-based region-checking works,
5-
//! see the [rustc guide].
5+
//! see the [rustc dev guide].
66
//!
7-
//! [rustc guide]: https://rust-lang.github.io/rustc-dev-guide/mir/borrowck.html
7+
//! [rustc dev guide]: https://rust-lang.github.io/rustc-dev-guide/mir/borrowck.html
88
99
use crate::ich::{NodeIdHashingMode, StableHashingContext};
1010
use crate::ty::{self, DefIdTree, TyCtxt};

src/librustc/mir/mod.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
//! MIR datatypes and passes. See the [rustc guide] for more info.
1+
//! MIR datatypes and passes. See the [rustc dev guide] for more info.
22
//!
3-
//! [rustc guide]: https://rust-lang.github.io/rustc-dev-guide/mir/index.html
3+
//! [rustc dev guide]: https://rust-lang.github.io/rustc-dev-guide/mir/index.html
44
55
use crate::mir::interpret::{GlobalAlloc, Scalar};
66
use crate::mir::visit::MirVisitable;

src/librustc/traits/mod.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
//! Trait Resolution. See the [rustc guide] for more information on how this works.
1+
//! Trait Resolution. See the [rustc dev guide] for more information on how this works.
22
//!
3-
//! [rustc guide]: https://rust-lang.github.io/rustc-dev-guide/traits/resolution.html
3+
//! [rustc dev guide]: https://rust-lang.github.io/rustc-dev-guide/traits/resolution.html
44
55
pub mod query;
66
pub mod select;

src/librustc/traits/select.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
//! Candidate selection. See the [rustc guide] for more information on how this works.
1+
//! Candidate selection. See the [rustc dev guide] for more information on how this works.
22
//!
3-
//! [rustc guide]: https://rust-lang.github.io/rustc-dev-guide/traits/resolution.html#selection
3+
//! [rustc dev guide]: https://rust-lang.github.io/rustc-dev-guide/traits/resolution.html#selection
44
55
use self::EvaluationResult::*;
66

src/librustc/ty/context.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -916,9 +916,9 @@ pub struct FreeRegionInfo {
916916
/// The central data structure of the compiler. It stores references
917917
/// to the various **arenas** and also houses the results of the
918918
/// various **compiler queries** that have been performed. See the
919-
/// [rustc guide] for more details.
919+
/// [rustc dev guide] for more details.
920920
///
921-
/// [rustc guide]: https://rust-lang.github.io/rustc-dev-guide/ty.html
921+
/// [rustc dev guide]: https://rust-lang.github.io/rustc-dev-guide/ty.html
922922
#[derive(Copy, Clone)]
923923
#[rustc_diagnostic_item = "TyCtxt"]
924924
pub struct TyCtxt<'tcx> {

src/librustc/ty/query/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
For more information about how the query system works, see the [rustc guide].
1+
For more information about how the query system works, see the [rustc dev guide].
22

3-
[rustc guide]: https://rust-lang.github.io/rustc-dev-guide/query.html
3+
[rustc dev guide]: https://rust-lang.github.io/rustc-dev-guide/query.html

src/librustc/ty/sty.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1396,11 +1396,11 @@ pub type Region<'tcx> = &'tcx RegionKind;
13961396
/// the inference variable is supposed to satisfy the relation
13971397
/// *for every value of the placeholder region*. To ensure that doesn't
13981398
/// happen, you can use `leak_check`. This is more clearly explained
1399-
/// by the [rustc guide].
1399+
/// by the [rustc dev guide].
14001400
///
14011401
/// [1]: http://smallcultfollowing.com/babysteps/blog/2013/10/29/intermingled-parameter-lists/
14021402
/// [2]: http://smallcultfollowing.com/babysteps/blog/2013/11/04/intermingled-parameter-lists/
1403-
/// [rustc guide]: https://rust-lang.github.io/rustc-dev-guide/traits/hrtb.html
1403+
/// [rustc dev guide]: https://rust-lang.github.io/rustc-dev-guide/traits/hrtb.html
14041404
#[derive(Clone, PartialEq, Eq, Hash, Copy, RustcEncodable, RustcDecodable, PartialOrd, Ord)]
14051405
pub enum RegionKind {
14061406
/// Region bound in a type or fn declaration which will be

src/librustc_ast/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ The `rustc_ast` crate contains those things concerned purely with syntax
33
lexer, macro expander, and utilities for traversing ASTs.
44

55
For more information about how these things work in rustc, see the
6-
rustc guide:
6+
rustc dev guide:
77

88
- [Parsing](https://rust-lang.github.io/rustc-dev-guide/the-parser.html)
99
- [Macro Expansion](https://rust-lang.github.io/rustc-dev-guide/macro-expansion.html)

src/librustc_codegen_llvm/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ The `codegen` crate contains the code to convert from MIR into LLVM IR,
22
and then from LLVM IR into machine code. In general it contains code
33
that runs towards the end of the compilation process.
44

5-
For more information about how codegen works, see the [rustc guide].
5+
For more information about how codegen works, see the [rustc dev guide].
66

7-
[rustc guide]: https://rust-lang.github.io/rustc-dev-guide/codegen.html
7+
[rustc dev guide]: https://rust-lang.github.io/rustc-dev-guide/codegen.html

src/librustc_driver/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ not contain any of the "main logic" of the compiler (though it does
55
have some code related to pretty printing or other minor compiler
66
options).
77

8-
For more information about how the driver works, see the [rustc guide].
8+
For more information about how the driver works, see the [rustc dev guide].
99

10-
[rustc guide]: https://rust-lang.github.io/rustc-dev-guide/rustc-driver.html
10+
[rustc dev guide]: https://rust-lang.github.io/rustc-dev-guide/rustc-driver.html

src/librustc_hir/hir.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -609,9 +609,9 @@ pub struct ModuleItems {
609609
/// The top-level data structure that stores the entire contents of
610610
/// the crate currently being compiled.
611611
///
612-
/// For more details, see the [rustc guide].
612+
/// For more details, see the [rustc dev guide].
613613
///
614-
/// [rustc guide]: https://rust-lang.github.io/rustc-dev-guide/hir.html
614+
/// [rustc dev guide]: https://rust-lang.github.io/rustc-dev-guide/hir.html
615615
#[derive(RustcEncodable, RustcDecodable, Debug)]
616616
pub struct Crate<'hir> {
617617
pub module: Mod<'hir>,

src/librustc_hir/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
//! HIR datatypes. See the [rustc guide] for more info.
1+
//! HIR datatypes. See the [rustc dev guide] for more info.
22
//!
3-
//! [rustc guide]: https://rust-lang.github.io/rustc-dev-guide/hir.html
3+
//! [rustc dev guide]: https://rust-lang.github.io/rustc-dev-guide/hir.html
44
55
#![feature(crate_visibility_modifier)]
66
#![feature(const_fn)] // For the unsizing cast on `&[]`
+2-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
For info on how the incremental compilation works, see the [rustc guide].
1+
For info on how the incremental compilation works, see the [rustc dev guide].
22

3-
[rustc guide]: https://rust-lang.github.io/rustc-dev-guide/query.html
3+
[rustc dev guide]: https://rust-lang.github.io/rustc-dev-guide/query.html

src/librustc_infer/infer/canonical/canonicalizer.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
//! This module contains the "canonicalizer" itself.
22
//!
33
//! For an overview of what canonicalization is and how it fits into
4-
//! rustc, check out the [chapter in the rustc guide][c].
4+
//! rustc, check out the [chapter in the rustc dev guide][c].
55
//!
66
//! [c]: https://rust-lang.github.io/rustc-dev-guide/traits/canonicalization.html
77
@@ -33,7 +33,7 @@ impl<'cx, 'tcx> InferCtxt<'cx, 'tcx> {
3333
/// with a mapping M that maps `'?0` to `'static`.
3434
///
3535
/// To get a good understanding of what is happening here, check
36-
/// out the [chapter in the rustc guide][c].
36+
/// out the [chapter in the rustc dev guide][c].
3737
///
3838
/// [c]: https://rust-lang.github.io/rustc-dev-guide/traits/canonicalization.html#canonicalizing-the-query
3939
pub fn canonicalize_query<V>(
@@ -77,7 +77,7 @@ impl<'cx, 'tcx> InferCtxt<'cx, 'tcx> {
7777
/// reference to `'static` alone.
7878
///
7979
/// To get a good understanding of what is happening here, check
80-
/// out the [chapter in the rustc guide][c].
80+
/// out the [chapter in the rustc dev guide][c].
8181
///
8282
/// [c]: https://rust-lang.github.io/rustc-dev-guide/traits/canonicalization.html#canonicalizing-the-query-result
8383
pub fn canonicalize_response<V>(&self, value: &V) -> Canonicalized<'tcx, V>

src/librustc_infer/infer/canonical/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
//! `instantiate_query_result` method.
1818
//!
1919
//! For a more detailed look at what is happening here, check
20-
//! out the [chapter in the rustc guide][c].
20+
//! out the [chapter in the rustc dev guide][c].
2121
//!
2222
//! [c]: https://rust-lang.github.io/rustc-dev-guide/traits/canonicalization.html
2323

src/librustc_infer/infer/canonical/query_response.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
//! encode them therein.
44
//!
55
//! For an overview of what canonicaliation is and how it fits into
6-
//! rustc, check out the [chapter in the rustc guide][c].
6+
//! rustc, check out the [chapter in the rustc dev guide][c].
77
//!
88
//! [c]: https://rust-lang.github.io/rustc-dev-guide/traits/canonicalization.html
99
@@ -195,7 +195,7 @@ impl<'cx, 'tcx> InferCtxt<'cx, 'tcx> {
195195
/// the query before applying this function.)
196196
///
197197
/// To get a good understanding of what is happening here, check
198-
/// out the [chapter in the rustc guide][c].
198+
/// out the [chapter in the rustc dev guide][c].
199199
///
200200
/// [c]: https://rust-lang.github.io/rustc-dev-guide/traits/canonicalization.html#processing-the-canonicalized-query-result
201201
pub fn instantiate_query_response_and_region_obligations<R>(

src/librustc_infer/infer/canonical/substitute.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
//! `Canonical<'tcx, T>`.
33
//!
44
//! For an overview of what canonicalization is and how it fits into
5-
//! rustc, check out the [chapter in the rustc guide][c].
5+
//! rustc, check out the [chapter in the rustc dev guide][c].
66
//!
77
//! [c]: https://rust-lang.github.io/rustc-dev-guide/traits/canonicalization.html
88

src/librustc_infer/infer/higher_ranked/mod.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -71,9 +71,9 @@ impl<'a, 'tcx> InferCtxt<'a, 'tcx> {
7171
/// needed (but is also permitted).
7272
///
7373
/// For more information about how placeholders and HRTBs work, see
74-
/// the [rustc guide].
74+
/// the [rustc dev guide].
7575
///
76-
/// [rustc guide]: https://rust-lang.github.io/rustc-dev-guide/traits/hrtb.html
76+
/// [rustc dev guide]: https://rust-lang.github.io/rustc-dev-guide/traits/hrtb.html
7777
pub fn replace_bound_vars_with_placeholders<T>(
7878
&self,
7979
binder: &ty::Binder<T>,
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
For info on how the current borrowck works, see the [rustc guide].
1+
For info on how the current borrowck works, see the [rustc dev guide].
22

3-
[rustc guide]: https://rust-lang.github.io/rustc-dev-guide/borrow_check.html
3+
[rustc dev guide]: https://rust-lang.github.io/rustc-dev-guide/borrow_check.html

src/librustc_infer/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
//! this code handles low-level equality and subtyping operations. The
66
//! type check pass in the compiler is found in the `librustc_typeck` crate.
77
//!
8-
//! For more information about how rustc works, see the [rustc guide].
8+
//! For more information about how rustc works, see the [rustc dev guide].
99
//!
10-
//! [rustc guide]: https://rust-lang.github.io/rustc-dev-guide/
10+
//! [rustc dev guide]: https://rust-lang.github.io/rustc-dev-guide/
1111
//!
1212
//! # Note
1313
//!

src/librustc_infer/traits/mod.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
//! Trait Resolution. See the [rustc guide] for more information on how this works.
1+
//! Trait Resolution. See the [rustc dev guide] for more information on how this works.
22
//!
3-
//! [rustc guide]: https://rust-lang.github.io/rustc-dev-guide/traits/resolution.html
3+
//! [rustc dev guide]: https://rust-lang.github.io/rustc-dev-guide/traits/resolution.html
44
55
#[allow(dead_code)]
66
pub mod auto_trait;

src/librustc_infer/traits/select.rs

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
// ignore-tidy-filelength
22

3-
//! Candidate selection. See the [rustc guide] for more information on how this works.
3+
//! Candidate selection. See the [rustc dev guide] for more information on how this works.
44
//!
5-
//! [rustc guide]: https://rust-lang.github.io/rustc-dev-guide/traits/resolution.html#selection
5+
//! [rustc dev guide]: https://rust-lang.github.io/rustc-dev-guide/traits/resolution.html#selection
66
77
use self::EvaluationResult::*;
88
use self::SelectionCandidate::*;
@@ -931,9 +931,9 @@ impl<'cx, 'tcx> SelectionContext<'cx, 'tcx> {
931931
//
932932
// The selection process begins by examining all in-scope impls,
933933
// caller obligations, and so forth and assembling a list of
934-
// candidates. See the [rustc guide] for more details.
934+
// candidates. See the [rustc dev guide] for more details.
935935
//
936-
// [rustc guide]:
936+
// [rustc dev guide]:
937937
// https://rust-lang.github.io/rustc-dev-guide/traits/resolution.html#candidate-assembly
938938

939939
fn candidate_from_obligation<'o>(
@@ -2447,9 +2447,9 @@ impl<'cx, 'tcx> SelectionContext<'cx, 'tcx> {
24472447
//
24482448
// Confirmation unifies the output type parameters of the trait
24492449
// with the values found in the obligation, possibly yielding a
2450-
// type error. See the [rustc guide] for more details.
2450+
// type error. See the [rustc dev guide] for more details.
24512451
//
2452-
// [rustc guide]:
2452+
// [rustc dev guide]:
24532453
// https://rust-lang.github.io/rustc-dev-guide/traits/resolution.html#confirmation
24542454

24552455
fn confirm_candidate(

src/librustc_infer/traits/specialize/mod.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
//! At the moment, this implementation support only the simple "chain" rule:
55
//! If any two impls overlap, one must be a strict subset of the other.
66
//!
7-
//! See the [rustc guide] for a bit more detail on how specialization
7+
//! See the [rustc dev guide] for a bit more detail on how specialization
88
//! fits together with the rest of the trait machinery.
99
//!
10-
//! [rustc guide]: https://rust-lang.github.io/rustc-dev-guide/traits/specialization.html
10+
//! [rustc dev guide]: https://rust-lang.github.io/rustc-dev-guide/traits/specialization.html
1111
1212
pub mod specialization_graph;
1313
use specialization_graph::GraphExt;

src/librustc_passes/region.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
//! the parent links in the region hierarchy.
33
//!
44
//! For more information about how MIR-based region-checking works,
5-
//! see the [rustc guide].
5+
//! see the [rustc dev guide].
66
//!
7-
//! [rustc guide]: https://rust-lang.github.io/rustc-dev-guide/borrow_check.html
7+
//! [rustc dev guide]: https://rust-lang.github.io/rustc-dev-guide/borrow_check.html
88
99
use rustc::hir::map::Map;
1010
use rustc::middle::region::*;

0 commit comments

Comments
 (0)