Last active
May 10, 2020 16:11
-
-
Save pnlph/40cd474004cb40aa25d489ad37c79fb2 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module issue.#3135 where | |
-- latex \sqw | |
postulate | |
A : Set | |
□ : Set | |
_□ : Set → Set | |
⟨_⟩ : Set → Set | |
--G : Set | |
--G = ? □ | |
open import Agda.Builtin.Equality using (_≡_ ; refl) | |
_ : A □ ≡ A □ | |
_ = refl | |
-- C-c C-l fails (version 2.6.1) | |
-- Don't know how to parse A □ ≡ A □. Could mean any one of: | |
-- (A □) ≡ (A □) | |
-- (A □) ≡ (A □) | |
-- (A □) ≡ (A □) | |
-- (A □) ≡ (A □) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment