Skip to content

Commit 4ff7e6e

Browse files
Normalize field access types during borrowck
1 parent 10c4c4a commit 4ff7e6e

File tree

2 files changed

+26
-0
lines changed

2 files changed

+26
-0
lines changed

compiler/rustc_borrowck/src/type_check/mod.rs

+1
Original file line numberDiff line numberDiff line change
@@ -758,6 +758,7 @@ impl<'a, 'b, 'tcx> TypeVerifier<'a, 'b, 'tcx> {
758758
},
759759
ProjectionElem::Field(field, fty) => {
760760
let fty = self.sanitize_type(place, fty);
761+
let fty = self.cx.normalize(fty, location);
761762
match self.field_ty(place, base, field, location) {
762763
Ok(ty) => {
763764
let ty = self.cx.normalize(ty, location);
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
// check-pass
2+
3+
#![feature(generic_associated_types)]
4+
5+
pub trait Fooey: Sized {
6+
type Context<'c> where Self: 'c;
7+
}
8+
9+
pub struct Handle<E: Fooey>(Option<Box<dyn for<'c> Fn(&mut E::Context<'c>)>>);
10+
11+
fn tuple<T>() -> (Option<T>,) { (Option::None,) }
12+
13+
pub struct FooImpl {}
14+
impl Fooey for FooImpl {
15+
type Context<'c> = &'c ();
16+
}
17+
18+
impl FooImpl {
19+
pub fn fail1() -> Handle<Self> {
20+
let (tx,) = tuple();
21+
Handle(tx)
22+
}
23+
}
24+
25+
fn main() {}

0 commit comments

Comments
 (0)