Skip to content

Instantly share code, notes, and snippets.

@xekoukou
Created February 25, 2022 13:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save xekoukou/aeb7ecaaaad59de1336d4d1080b7fa71 to your computer and use it in GitHub Desktop.
Save xekoukou/aeb7ecaaaad59de1336d4d1080b7fa71 to your computer and use it in GitHub Desktop.
agda_bug
module test where
module QBree (A : Set) where
data Bree : Set where
_∪_ : Bree → Bree → Bree
data S : Bree → Bree → Set where
assoc : (x y z : Bree) → S (x ∪ (y ∪ z)) ((x ∪ y) ∪ z)
module _ W Q where
module WMB = QBree W
module QMB = QBree Q
l12 : (a b : WMB.Bree) → WMB.S a b → Set
l12 a b r = {!!}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment