adapt changes in lib-laddertypes

This commit is contained in:
Michael Sippel 2025-05-06 00:39:32 +02:00
parent 6787e607a6
commit 3ed7a19270
Signed by: senvas
GPG key ID: F96CF119C34B64A6

View file

@ -209,7 +209,7 @@ impl StructLayout {
}
pub fn parse(dict: &mut impl TypeDict, struct_type: &DesugaredTypeTerm) -> Option <Self> {
let st = struct_type.clone().strip().param_normalize().sugar(dict);
let st = struct_type.clone().strip().sugar(dict).normalize();
Self::parse_sugared(dict, st)
}