Skip to content

Commit

Permalink
lib: use a debugger to step into the compiler to figure out how the b…
Browse files Browse the repository at this point in the history
…ug appears and fix it by rewriting the code
  • Loading branch information
ice1000 committed Feb 13, 2023
1 parent 1e071c6 commit 4b6fff2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
open import Arith::Nat::Core
open import Arith::Nat::Properties
open import Logic::False
open import Logic::Dec
open import Paths
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ open import Arith::Nat::Core
def isHLvl Nat Type : Type
| 0, A => isContr A
| 1, A => isProp A
| suc n, A => ∀ a b -> isHLvl n (a = b)
| suc n, A => ∀ (a b : A) -> isHLvl n (a = b)

0 comments on commit 4b6fff2

Please sign in to comment.