Skip to content

Commit ba973db

Browse files
committed
Auto merge of #17925 - darichey:issue-17767, r=Veykril
Include generics when lowering extern type Fixes #17767
2 parents fa00326 + e350bc2 commit ba973db

File tree

2 files changed

+21
-5
lines changed

2 files changed

+21
-5
lines changed

crates/hir-ty/src/lower.rs

+5-5
Original file line numberDiff line numberDiff line change
@@ -1976,13 +1976,13 @@ fn type_for_type_alias(db: &dyn HirDatabase, t: TypeAliasId) -> Binders<Ty> {
19761976
.with_impl_trait_mode(ImplTraitLoweringMode::Opaque)
19771977
.with_type_param_mode(ParamLoweringMode::Variable);
19781978
let type_alias_data = db.type_alias_data(t);
1979-
if type_alias_data.is_extern {
1980-
Binders::empty(Interner, TyKind::Foreign(crate::to_foreign_def_id(t)).intern(Interner))
1979+
let inner = if type_alias_data.is_extern {
1980+
TyKind::Foreign(crate::to_foreign_def_id(t)).intern(Interner)
19811981
} else {
19821982
let type_ref = &type_alias_data.type_ref;
1983-
let inner = ctx.lower_ty(type_ref.as_deref().unwrap_or(&TypeRef::Error));
1984-
make_binders(db, &generics, inner)
1985-
}
1983+
ctx.lower_ty(type_ref.as_deref().unwrap_or(&TypeRef::Error))
1984+
};
1985+
make_binders(db, &generics, inner)
19861986
}
19871987

19881988
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]

crates/hir-ty/src/tests/regression.rs

+16
Original file line numberDiff line numberDiff line change
@@ -2195,3 +2195,19 @@ impl<'a, T: Deref<Target = impl Trait>> Struct<'a, T> {
21952195
"#]],
21962196
);
21972197
}
2198+
2199+
#[test]
2200+
fn issue_17767() {
2201+
check_infer(
2202+
r#"
2203+
extern "C" {
2204+
type Foo<T>;
2205+
}
2206+
2207+
fn f() -> Foo {}
2208+
"#,
2209+
expect![[r#"
2210+
47..49 '{}': Foo
2211+
"#]],
2212+
);
2213+
}

0 commit comments

Comments
 (0)