We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 375a233 commit a06d9faCopy full SHA for a06d9fa
src/Codec/CBOR/Cuddle/CDDL/CTree.hs
@@ -1,5 +1,6 @@
1
{-# LANGUAGE DataKinds #-}
2
{-# LANGUAGE TypeFamilies #-}
3
+{-# LANGUAGE UndecidableInstances #-}
4
5
module Codec.CBOR.Cuddle.CDDL.CTree where
6
@@ -80,3 +81,5 @@ type Node i = CTreeExt i
80
81
82
newtype CTreeRoot i = CTreeRoot (Map.Map Name (CTree i))
83
deriving (Generic)
84
+
85
+deriving instance Show (CTree i) => Show (CTreeRoot i)
0 commit comments