Skip to content

Commit fa76786

Browse files
committed
fix a ICE #102768
1 parent 5854680 commit fa76786

File tree

3 files changed

+51
-2
lines changed

3 files changed

+51
-2
lines changed

compiler/rustc_hir_analysis/src/collect/type_of.rs

+4-2
Original file line numberDiff line numberDiff line change
@@ -493,8 +493,10 @@ pub(super) fn type_of(tcx: TyCtxt<'_>, def_id: DefId) -> Ty<'_> {
493493
},
494494
def_id.to_def_id(),
495495
);
496-
if let Some(assoc_item) = assoc_item {
497-
tcx.type_of(tcx.generics_of(assoc_item.def_id).params[idx].def_id)
496+
if let Some(param)
497+
= assoc_item.map(|item| &tcx.generics_of(item.def_id).params[idx]).filter(|param| param.kind.is_ty_or_const())
498+
{
499+
tcx.type_of(param.def_id)
498500
} else {
499501
// FIXME(associated_const_equality): add a useful error message here.
500502
tcx.ty_error_with_message(
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
#![feature(generic_const_exprs)]
2+
#![allow(incomplete_features)]
3+
4+
trait X {
5+
type Y<'a>;
6+
}
7+
8+
const _: () = {
9+
fn f2<'a>(arg: Box<dyn X<Y<1> = &'a ()>>) {}
10+
//~^ ERROR this associated type takes 1 lifetime argument but 0 lifetime arguments
11+
//~| ERROR this associated type takes 0 generic arguments but 1 generic argument
12+
};
13+
14+
fn main() {}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
error[E0107]: this associated type takes 1 lifetime argument but 0 lifetime arguments were supplied
2+
--> $DIR/issue-102768.rs:9:30
3+
|
4+
LL | fn f2<'a>(arg: Box<dyn X<Y<1> = &'a ()>>) {}
5+
| ^ expected 1 lifetime argument
6+
|
7+
note: associated type defined here, with 1 lifetime parameter: `'a`
8+
--> $DIR/issue-102768.rs:5:10
9+
|
10+
LL | type Y<'a>;
11+
| ^ --
12+
help: add missing lifetime argument
13+
|
14+
LL | fn f2<'a>(arg: Box<dyn X<Y<'a, 1> = &'a ()>>) {}
15+
| +++
16+
17+
error[E0107]: this associated type takes 0 generic arguments but 1 generic argument was supplied
18+
--> $DIR/issue-102768.rs:9:30
19+
|
20+
LL | fn f2<'a>(arg: Box<dyn X<Y<1> = &'a ()>>) {}
21+
| ^--- help: remove these generics
22+
| |
23+
| expected 0 generic arguments
24+
|
25+
note: associated type defined here, with 0 generic parameters
26+
--> $DIR/issue-102768.rs:5:10
27+
|
28+
LL | type Y<'a>;
29+
| ^
30+
31+
error: aborting due to 2 previous errors
32+
33+
For more information about this error, try `rustc --explain E0107`.

0 commit comments

Comments
 (0)