We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 77c31ff commit f0f39f9Copy full SHA for f0f39f9
src/Reflection/Abstraction.agda
@@ -11,6 +11,7 @@ module Reflection.Abstraction where
11
open import Data.List.Base as List using (List)
12
open import Data.Product using (_×_; _,_; uncurry; <_,_>)
13
import Data.String as String
14
+open import Level
15
open import Relation.Nullary
16
import Relation.Nullary.Decidable as Dec
17
open import Relation.Nullary.Product using (_×-dec_)
@@ -19,7 +20,8 @@ open import Relation.Binary.PropositionalEquality
19
20
21
private
22
variable
- A B : Set
23
+ a b : Level
24
+ A B : Set a
25
26
------------------------------------------------------------------------
27
-- Re-exporting the builtins publically
0 commit comments