Skip to content

Instantly share code, notes, and snippets.

@pnlph
Last active March 19, 2020 14:52
Show Gist options
  • Save pnlph/15fedaa310efda44e014752ab41fe38a to your computer and use it in GitHub Desktop.
Save pnlph/15fedaa310efda44e014752ab41fe38a to your computer and use it in GitHub Desktop.
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