This commit is contained in:
Folkert 2022-08-09 15:44:08 +02:00
parent 7c9b1897bb
commit 0c284f2bbf
No known key found for this signature in database
GPG key ID: 1F17F6FFD112B97C

View file

@ -278,6 +278,10 @@ fn expect_types(mut loaded_module: LoadedModule, mut expected_types: HashMap<&st
// at least at the moment this does not happen
panic!("Unexpected expectation in module declarations");
}
ExpectationFx => {
// at least at the moment this does not happen
panic!("Unexpected expectation in module declarations");
}
};
}
@ -363,7 +367,7 @@ fn interface_with_deps() {
def_count += 1;
}
MutualRecursion { .. } => { /* do nothing, not a def */ }
Expectation => { /* do nothing, not a def */ }
Expectation | ExpectationFx => { /* do nothing, not a def */ }
}
}