summaryrefslogtreecommitdiff
path: root/dhall
diff options
context:
space:
mode:
Diffstat (limited to 'dhall')
-rw-r--r--dhall/src/normalize.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/dhall/src/normalize.rs b/dhall/src/normalize.rs
index 608e6ee..93ccdf6 100644
--- a/dhall/src/normalize.rs
+++ b/dhall/src/normalize.rs
@@ -23,7 +23,6 @@ where
use dhall_core::ExprF::*;
use WhatNext::*;
let (ret, rest) = match (b, args) {
- (OptionalSome, [x, rest..]) => (rc(NEOptionalLit(x.roll())), rest),
(OptionalNone, [t, rest..]) => (rc(EmptyOptionalLit(t.roll())), rest),
(NaturalIsZero, [NaturalLit(n), rest..]) => {
(rc(BoolLit(*n == 0)), rest)