about summary refs log tree commit diff
path: root/compiler/rustc_ast_lowering/src/path.rs
diff options
context:
space:
mode:
authorMichael Goulet <michael@errs.io>2024-08-26 15:03:30 -0400
committerMichael Goulet <michael@errs.io>2024-09-20 22:18:57 -0400
commit51b51bb570e076d981e12a8e221ed3a74b3025c6 (patch)
tree06305f9799cc1656ab6edc9bfab4362d4e32e82c /compiler/rustc_ast_lowering/src/path.rs
parent19881b5a5a17b4fbc91529f867ca4e577af6438a (diff)
downloadrust-51b51bb570e076d981e12a8e221ed3a74b3025c6.tar.gz
rust-51b51bb570e076d981e12a8e221ed3a74b3025c6.zip
Implement RTN in resolve_bound_vars and HIR ty lowering
Diffstat (limited to 'compiler/rustc_ast_lowering/src/path.rs')
-rw-r--r--compiler/rustc_ast_lowering/src/path.rs5
1 files changed, 2 insertions, 3 deletions
diff --git a/compiler/rustc_ast_lowering/src/path.rs b/compiler/rustc_ast_lowering/src/path.rs
index 491c0dfc42e..6f0641dbc40 100644
--- a/compiler/rustc_ast_lowering/src/path.rs
+++ b/compiler/rustc_ast_lowering/src/path.rs
@@ -16,10 +16,9 @@ use super::errors::{
     GenericTypeWithParentheses, UseAngleBrackets,
 };
 use super::{
-    AllowReturnTypeNotation, GenericArgsCtor, GenericArgsMode, ImplTraitContext, LifetimeRes,
-    LoweringContext, ParamMode, ResolverAstLoweringExt,
+    AllowReturnTypeNotation, GenericArgsCtor, GenericArgsMode, ImplTraitContext, ImplTraitPosition,
+    LifetimeRes, LoweringContext, ParamMode, ResolverAstLoweringExt,
 };
-use crate::ImplTraitPosition;
 
 impl<'a, 'hir> LoweringContext<'a, 'hir> {
     #[instrument(level = "trace", skip(self))]