about summary refs log tree commit diff
path: root/src/test
diff options
context:
space:
mode:
authorNiko Matsakis <niko@alum.mit.edu>2017-11-05 06:34:22 -0500
committerNiko Matsakis <niko@alum.mit.edu>2017-11-16 05:57:43 -0500
commit23abd8513857fdaef35ee48b2df0c69b6f784fcf (patch)
treee9cedf28de2bad1493e557652a1e5ef449a54343 /src/test
parentcff191d4440df2befeb661f5ce7b9a53a03ce548 (diff)
downloadrust-23abd8513857fdaef35ee48b2df0c69b6f784fcf.tar.gz
rust-23abd8513857fdaef35ee48b2df0c69b6f784fcf.zip
rename `region_inference` module to `region_constraints`
Diffstat (limited to 'src/test')
-rw-r--r--src/test/run-pass/regions-relate-bound-regions-on-closures-to-inference-variables.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/run-pass/regions-relate-bound-regions-on-closures-to-inference-variables.rs b/src/test/run-pass/regions-relate-bound-regions-on-closures-to-inference-variables.rs
index ae4adbfb1f4..3162ef54f39 100644
--- a/src/test/run-pass/regions-relate-bound-regions-on-closures-to-inference-variables.rs
+++ b/src/test/run-pass/regions-relate-bound-regions-on-closures-to-inference-variables.rs
@@ -42,7 +42,7 @@ impl<'a,'tcx> Foo<'a,'tcx> {
             // inferring `'_2` to be `'static` in this case, because
             // it is created outside the closure but then related to
             // regions bound by the closure itself. See the
-            // `region_inference.rs` file (and the `givens` field, in
+            // `region_constraints.rs` file (and the `givens` field, in
             // particular) for more details.
             this.foo()
         }))