Skip to content

Commit

Permalink
test: first pass
Browse files Browse the repository at this point in the history
  • Loading branch information
thorimur committed Feb 23, 2024
1 parent ef75247 commit 98ebaa8
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions tests/lean/isDefEqDelayedMVarsBug.lean
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import Lean

open Lean Meta Elab Tactic in
elab "test " stx:term : tactic => withMainContext do
let e ← elabTerm stx none
discard <| withAssignableSyntheticOpaque <| isDefEq e (← getMainTarget)

axiom F {α} : α → Prop

theorem x : F (fun _ : Nat => 2) := by
test F (fun _ : Nat => ?e)
admit

0 comments on commit 98ebaa8

Please sign in to comment.