diff options
| author | Niko Matsakis <niko@alum.mit.edu> | 2018-10-02 16:50:20 -0400 |
|---|---|---|
| committer | Niko Matsakis <niko@alum.mit.edu> | 2018-10-04 11:02:40 -0400 |
| commit | 21aaaac29b5f0d009a0a136bdf3e6534d9f1c846 (patch) | |
| tree | 729fd197cd5b1195bebb3d35491eba4a2bff4d16 /src/librustc/ty | |
| parent | cdb95b0f215fb3590dc86223712b5bbcf126582f (diff) | |
| download | rust-21aaaac29b5f0d009a0a136bdf3e6534d9f1c846.tar.gz rust-21aaaac29b5f0d009a0a136bdf3e6534d9f1c846.zip | |
remove all occurences of `skolemize`
Diffstat (limited to 'src/librustc/ty')
| -rw-r--r-- | src/librustc/ty/sty.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustc/ty/sty.rs b/src/librustc/ty/sty.rs index d8dd73da536..6fc144d986e 100644 --- a/src/librustc/ty/sty.rs +++ b/src/librustc/ty/sty.rs @@ -743,7 +743,7 @@ impl<'tcx> PolyExistentialTraitRef<'tcx> { /// Binder is a binder for higher-ranked lifetimes. It is part of the /// compiler's representation for things like `for<'a> Fn(&'a isize)` /// (which would be represented by the type `PolyTraitRef == -/// Binder<TraitRef>`). Note that when we skolemize, instantiate, +/// Binder<TraitRef>`). Note that when we instantiate, /// erase, or otherwise "discharge" these bound regions, we change the /// type from `Binder<T>` to just `T` (see /// e.g. `liberate_late_bound_regions`). |
