We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d16309 commit f117fcfCopy full SHA for f117fcf
crates/formality-check/src/mini_rust_check.rs
@@ -278,6 +278,8 @@ impl Check<'_> {
278
Field(field_projection) => {
279
let ty = self.check_place(env, &field_projection.root).unwrap();
280
281
+ // FIXME(tiif): We eventuallyw ant to do normalization here, so check_place should eventually be
282
+ // a judgment fn.
283
let Some(adt_id) = ty.get_adt_id() else {
284
bail!("The local used for field projection is not adt.")
285
};
0 commit comments