diff options
Diffstat (limited to 'tvix/eval/src/vm.rs')
-rw-r--r-- | tvix/eval/src/vm.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tvix/eval/src/vm.rs b/tvix/eval/src/vm.rs index e088d22776db..cf70fda30747 100644 --- a/tvix/eval/src/vm.rs +++ b/tvix/eval/src/vm.rs @@ -83,7 +83,7 @@ impl VM { } fn pop(&mut self) -> Value { - self.stack.pop().expect("TODO") + self.stack.pop().expect("runtime stack empty") } fn push(&mut self, value: Value) { |