Skip to content

Commit 98cf9d9

Browse files
authored
Rollup merge of #70716 - matthewjasper:infer-const-type-regions, r=eddyb
Unerase regions in infer_placeholder_type closes #70608
2 parents 2f28058 + a12ebd3 commit 98cf9d9

File tree

3 files changed

+19
-4
lines changed

3 files changed

+19
-4
lines changed

src/librustc_typeck/collect/type_of.rs

+5-1
Original file line numberDiff line numberDiff line change
@@ -655,7 +655,11 @@ fn infer_placeholder_type(
655655
}
656656
}
657657

658-
ty
658+
// Typeck doesn't expect erased regions to be returned from `type_of`.
659+
tcx.fold_regions(&ty, &mut false, |r, _| match r {
660+
ty::ReErased => tcx.lifetimes.re_static,
661+
_ => r,
662+
})
659663
}
660664

661665
fn report_assoc_ty_on_inherent_impl(tcx: TyCtxt<'_>, span: Span) {

src/test/ui/suggestions/const-no-type.rs

+5
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,11 @@ const C = 42;
3535
//~| HELP provide a type for the item
3636
//~| SUGGESTION C: i32
3737

38+
const D = &&42;
39+
//~^ ERROR missing type for `const` item
40+
//~| HELP provide a type for the item
41+
//~| SUGGESTION D: &&i32
42+
3843
static S = Vec::<String>::new();
3944
//~^ ERROR missing type for `static` item
4045
//~| HELP provide a type for the item

src/test/ui/suggestions/const-no-type.stderr

+9-3
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,20 @@ error: missing type for `const` item
44
LL | const C = 42;
55
| ^ help: provide a type for the item: `C: i32`
66

7+
error: missing type for `const` item
8+
--> $DIR/const-no-type.rs:38:7
9+
|
10+
LL | const D = &&42;
11+
| ^ help: provide a type for the item: `D: &&i32`
12+
713
error: missing type for `static` item
8-
--> $DIR/const-no-type.rs:38:8
14+
--> $DIR/const-no-type.rs:43:8
915
|
1016
LL | static S = Vec::<String>::new();
1117
| ^ help: provide a type for the item: `S: std::vec::Vec<std::string::String>`
1218

1319
error: missing type for `static mut` item
14-
--> $DIR/const-no-type.rs:43:12
20+
--> $DIR/const-no-type.rs:48:12
1521
|
1622
LL | static mut SM = "abc";
1723
| ^^ help: provide a type for the item: `SM: &str`
@@ -34,5 +40,5 @@ error: missing type for `static mut` item
3440
LL | static mut SM2 = "abc";
3541
| ^^^ help: provide a type for the item: `SM2: <type>`
3642

37-
error: aborting due to 6 previous errors
43+
error: aborting due to 7 previous errors
3844

0 commit comments

Comments
 (0)