diff options
Diffstat (limited to 'tvix/eval/src/errors.rs')
-rw-r--r-- | tvix/eval/src/errors.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tvix/eval/src/errors.rs b/tvix/eval/src/errors.rs index 118c10621551..8a85972923c5 100644 --- a/tvix/eval/src/errors.rs +++ b/tvix/eval/src/errors.rs @@ -2,6 +2,10 @@ use std::fmt::Display; #[derive(Debug)] pub enum Error { + DuplicateAttrsKey { + key: String, + }, + TypeError { expected: &'static str, actual: &'static str, |