Skip to content

Commit

Permalink
agda: Move MSFree rule up
Browse files Browse the repository at this point in the history
  • Loading branch information
mirryi committed Dec 28, 2023
1 parent 25b3710 commit 42bc044
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions core/mexp.agda
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,11 @@ module core.mexp where
(∋x : Γ ∋ x ∶ τ)
Γ ⊢⇒ τ

-- MSFree
⊢⟦_⟧ : {Γ y}
(∌y : Γ ∌ y)
Γ ⊢⇒ unknown

-- MSLam
⊢λ_∶_∙_ : {Γ τ′}
(x : Var)
Expand Down Expand Up @@ -78,11 +83,6 @@ module core.mexp where
(τ₁⊓τ₂ : τ₁ ⊓ τ₂ ⇒ τ)
Γ ⊢⇒ τ

-- MSFree
⊢⟦_⟧ : {Γ y}
(∌y : Γ ∌ y)
Γ ⊢⇒ unknown

-- MSInconsistentBranches
⊢⦉_∙_∙_⦊[_] : {Γ τ₁ τ₂}
(ě₁ : Γ ⊢⇐ bool)
Expand Down

0 comments on commit 42bc044

Please sign in to comment.