summaryrefslogtreecommitdiff
path: root/src/AST.hs
diff options
context:
space:
mode:
authorTom Smeding <t.j.smeding@uu.nl>2023-09-21 15:52:22 +0200
committerTom Smeding <t.j.smeding@uu.nl>2023-09-21 15:52:22 +0200
commit574569ee96a01d623baf8efdcd3908eef42b8007 (patch)
treecffc7d81e32b2b52430ac7da97a2a31102f55c97 /src/AST.hs
parent8d07a43f0b364156433dc453b9d1cc762c032634 (diff)
Storage policy (accum / merge)
Diffstat (limited to 'src/AST.hs')
-rw-r--r--src/AST.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/AST.hs b/src/AST.hs
index 8d795bf..e39c74f 100644
--- a/src/AST.hs
+++ b/src/AST.hs
@@ -28,7 +28,7 @@ data Nat = Z | S Nat
data SNat n where
SZ :: SNat Z
SS :: SNat n -> SNat (S n)
-deriving instance (Show (SNat n))
+deriving instance Show (SNat n)
data Vec n t where
VNil :: Vec Z t