diff options
Diffstat (limited to 'tvix/eval/src/upvalues.rs')
-rw-r--r-- | tvix/eval/src/upvalues.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tvix/eval/src/upvalues.rs b/tvix/eval/src/upvalues.rs index 450ea130ff24..687d6850ccfa 100644 --- a/tvix/eval/src/upvalues.rs +++ b/tvix/eval/src/upvalues.rs @@ -24,7 +24,7 @@ use crate::{opcode::UpvalueIdx, Value}; /// `let`, `name:` or `{name}:` /// - Dynamic identifiers, which are not bound in any enclosing /// scope -#[derive(Clone, Debug, PartialEq)] +#[derive(Clone, Debug)] pub struct Upvalues { /// The upvalues of static identifiers. Each static identifier /// is assigned an integer identifier at compile time, which is |