diff options
| author | tslil <tslil@posteo.de> | 2026-05-07 10:06:51 +0100 |
|---|---|---|
| committer | tslil <tslil@posteo.de> | 2026-05-07 11:18:31 +0100 |
| commit | d14c744a1cff323f8a837ef620a93ee518c392a2 (patch) | |
| tree | 2222c29a4ca32e8bf592455d987fb0979c5e593e /src/checker.rs | |
| parent | fb5ba7fb62f4ce75f307233d5ffb438243f353b6 (diff) | |
finish the implementation, we don't have motives so this is how it will have to stay
Diffstat (limited to 'src/checker.rs')
| -rw-r--r-- | src/checker.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/checker.rs b/src/checker.rs index f94fccc..7b06c8b 100644 --- a/src/checker.rs +++ b/src/checker.rs @@ -28,7 +28,7 @@ impl CheckerState { Decl::Element { name, element, set } => { self.assert_unbound_element(name)?; let set = self.check_set(set)?; - let element = self.check_element(element.into(), &set)?; + let element = self.check_element(element.into(), Some(&set))?; self.add_element(name.clone(), element.into(), set) } Decl::Signature { name, signature } => { |
