Skip to content

Commit 3d94ade

Browse files
carlostomeomelkonian
authored andcommitted
Fix broken import in Tactic.J
1 parent 5ff8533 commit 3d94ade

1 file changed

Lines changed: 3 additions & 4 deletions

File tree

Tactic/J.agda

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@
77
-- via `open import Tactic.J (quote J) (quote refl)`
88
--------------------------------------------------------------------------------
99

10-
open import Meta
10+
open import Meta.Init
1111

1212
module Tactic.J (J-name refl-name : Name) where
1313

14-
open import Meta.Prelude
14+
open import Meta.Prelude hiding (J)
1515

1616
open import Class.Monad
1717
open import Class.MonadError
@@ -46,14 +46,13 @@ macro
4646

4747
private
4848
module Test where
49-
open import Relation.Binary.PropositionalEquality
49+
open import Relation.Binary.PropositionalEquality hiding (J)
5050
open ≡-Reasoning
5151
open import Tactic.Defaults
5252

5353
-- since we can't use names abstractly, we need to do some yoga here
5454

5555
private variable
56-
A : Set
5756
x y z w : A
5857

5958
J : {ℓ₁ ℓ₂} {A : Set ℓ₁} {x : A} (P : (y : A) x ≡ y Set ℓ₂)

0 commit comments

Comments
 (0)