summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/LambdaCube/Compiler/Core.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/LambdaCube/Compiler/Core.hs b/src/LambdaCube/Compiler/Core.hs
index 809a8d9c..4f0c597a 100644
--- a/src/LambdaCube/Compiler/Core.hs
+++ b/src/LambdaCube/Compiler/Core.hs
@@ -259,7 +259,7 @@ reduce (Neut (ReducedN y)) = Just $ hnf y
259reduce (SubstLet x) = Just $ hnf x 259reduce (SubstLet x) = Just $ hnf x
260reduce _ = Nothing 260reduce _ = Nothing
261-} 261-}
262hnf (Reduced y) = y 262hnf (Reduced y) = hnf y -- TODO: review hnf call here
263hnf a = a 263hnf a = a
264 264
265outputType = tTyCon0 FOutput $ error "cs 9" 265outputType = tTyCon0 FOutput $ error "cs 9"