First stab at fixing the error, not a full success.

This commit is contained in:
Tom Alexander
2020-05-16 21:30:51 -04:00
parent 974ce96f14
commit 054480b797
6 changed files with 70 additions and 17 deletions

View File

@@ -520,6 +520,11 @@ mod tests {
fn equals(&self, other: &dyn ContextElement) -> bool {
false
}
fn partial_compare(&self, other: &dyn ContextElement) -> Option<Ordering> {
// TODO: Implement
None
}
}
#[test]