diff options
Diffstat (limited to 'tvix/eval/src/value/attrs.rs')
-rw-r--r-- | tvix/eval/src/value/attrs.rs | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/tvix/eval/src/value/attrs.rs b/tvix/eval/src/value/attrs.rs index 76a0fe3cf646..03c12a6617cf 100644 --- a/tvix/eval/src/value/attrs.rs +++ b/tvix/eval/src/value/attrs.rs @@ -256,11 +256,7 @@ impl NixAttrs { continue; } - other => { - return Err(Error::InvalidKeyType { - given: other.type_of(), - }) - } + other => panic!("unexpected attribute key type: {}", other.type_of()), } } |