Last active
March 19, 2020 14:52
-
-
Save pnlph/15fedaa310efda44e014752ab41fe38a 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 reflection-issue where | |
open import Data.Nat using (zero) | |
open import Data.Vec using (_∷_) | |
open import Agda.Builtin.Equality using (_≡_; refl) | |
open import Agda.Builtin.Reflection using (con) | |
open import Data.List using ([]) | |
_ : quoteTerm zero ≡ con (quote zero) [] | |
_ = refl | |
_ : quoteTerm _∷_ ≡ con (quote _∷_) [] | |
_ = refl |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment