Skip to content

Commit f0f39f9

Browse files
committed
Make definitions in Reflection.Abstraction level-polymorphic
1 parent 77c31ff commit f0f39f9

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/Reflection/Abstraction.agda

+3-1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ module Reflection.Abstraction where
1111
open import Data.List.Base as List using (List)
1212
open import Data.Product using (_×_; _,_; uncurry; <_,_>)
1313
import Data.String as String
14+
open import Level
1415
open import Relation.Nullary
1516
import Relation.Nullary.Decidable as Dec
1617
open import Relation.Nullary.Product using (_×-dec_)
@@ -19,7 +20,8 @@ open import Relation.Binary.PropositionalEquality
1920

2021
private
2122
variable
22-
A B : Set
23+
a b : Level
24+
A B : Set a
2325

2426
------------------------------------------------------------------------
2527
-- Re-exporting the builtins publically

0 commit comments

Comments
 (0)