diff options
| author | Alan Egerton <eggyal@gmail.com> | 2023-02-09 14:02:47 +0000 |
|---|---|---|
| committer | Alan Egerton <eggyal@gmail.com> | 2023-02-13 10:24:46 +0000 |
| commit | ba55a453eba195fa3fae02b636abcf2bf9f59b95 (patch) | |
| tree | c513f6f979cc03d7f37e88d7b490cb90a5b76307 /compiler/rustc_const_eval | |
| parent | 62846d7c99ca4e17be8c6867fc4b50d10c8a6ec1 (diff) | |
| download | rust-ba55a453eba195fa3fae02b636abcf2bf9f59b95.tar.gz rust-ba55a453eba195fa3fae02b636abcf2bf9f59b95.zip | |
Alias folding/visiting traits instead of re-export
Diffstat (limited to 'compiler/rustc_const_eval')
| -rw-r--r-- | compiler/rustc_const_eval/src/interpret/util.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_const_eval/src/interpret/util.rs b/compiler/rustc_const_eval/src/interpret/util.rs index cabc65e2c07..59c4b92c0e8 100644 --- a/compiler/rustc_const_eval/src/interpret/util.rs +++ b/compiler/rustc_const_eval/src/interpret/util.rs @@ -1,5 +1,5 @@ use rustc_middle::mir::interpret::InterpResult; -use rustc_middle::ty::{self, Ty, TyCtxt, TypeSuperVisitable, TypeVisitable, TypeVisitor}; +use rustc_middle::ty::{self, ir::TypeVisitor, Ty, TyCtxt, TypeSuperVisitable, TypeVisitable}; use std::ops::ControlFlow; /// Checks whether a type contains generic parameters which require substitution. |
