diff options
| author | Michael Goulet <michael@errs.io> | 2025-01-18 18:47:11 +0000 | 
|---|---|---|
| committer | Michael Goulet <michael@errs.io> | 2025-01-18 18:47:17 +0000 | 
| commit | 2a180a93a12e5353e77d2b8f03fb95f99fed2dc7 (patch) | |
| tree | 4fe506b2a845878e0a3675949b10d022e8332f60 /compiler/rustc_middle/src/ty/mod.rs | |
| parent | 8321f00bf4a5f25cad5ec8861c5469afe6e0ce8b (diff) | |
| download | rust-2a180a93a12e5353e77d2b8f03fb95f99fed2dc7.tar.gz rust-2a180a93a12e5353e77d2b8f03fb95f99fed2dc7.zip | |
Get rid of `ToPolyTraitRef`
Diffstat (limited to 'compiler/rustc_middle/src/ty/mod.rs')
| -rw-r--r-- | compiler/rustc_middle/src/ty/mod.rs | 3 | 
1 files changed, 1 insertions, 2 deletions
| diff --git a/compiler/rustc_middle/src/ty/mod.rs b/compiler/rustc_middle/src/ty/mod.rs index d2875fb3794..ca70ae794c5 100644 --- a/compiler/rustc_middle/src/ty/mod.rs +++ b/compiler/rustc_middle/src/ty/mod.rs @@ -79,8 +79,7 @@ pub use self::predicate::{ PolyExistentialPredicate, PolyExistentialProjection, PolyExistentialTraitRef, PolyProjectionPredicate, PolyRegionOutlivesPredicate, PolySubtypePredicate, PolyTraitPredicate, PolyTraitRef, PolyTypeOutlivesPredicate, Predicate, PredicateKind, ProjectionPredicate, - RegionOutlivesPredicate, SubtypePredicate, ToPolyTraitRef, TraitPredicate, TraitRef, - TypeOutlivesPredicate, + RegionOutlivesPredicate, SubtypePredicate, TraitPredicate, TraitRef, TypeOutlivesPredicate, }; pub use self::region::{ BoundRegion, BoundRegionKind, EarlyParamRegion, LateParamRegion, LateParamRegionKind, Region, | 
