diff options
-rw-r--r-- | src/Sequence/Formula.hs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/Sequence/Formula.hs b/src/Sequence/Formula.hs index 9000c58..d486bab 100644 --- a/src/Sequence/Formula.hs +++ b/src/Sequence/Formula.hs | |||
@@ -46,6 +46,9 @@ instance a :<: (a, b) where | |||
46 | instance a :<: (b, a) where | 46 | instance a :<: (b, a) where |
47 | ctx' = _2 | 47 | ctx' = _2 |
48 | 48 | ||
49 | instance () :<: a where | ||
50 | ctx' = united | ||
51 | |||
49 | data Context small = forall large. (small :<: large) => Context large | 52 | data Context small = forall large. (small :<: large) => Context large |
50 | 53 | ||
51 | ctx :: Traversal' (Context input) input | 54 | ctx :: Traversal' (Context input) input |