This PR migrates most remaining tests to the new test suite. It also completes the migration of directories like `tests/lean/run`, meaning that PRs trying to add tests to those old directories will now fail.
16 lines
335 B
Text
16 lines
335 B
Text
/-- MyNat doc -/
|
||
inductive MyNat where
|
||
| zero : MyNat
|
||
| succ : MyNat → MyNat
|
||
|
||
/-- MyTrue doc -/
|
||
structure MyTrue : Prop where
|
||
|
||
/-- MyEq doc -/
|
||
inductive MyEq : α → α → Prop where
|
||
| refl (a : α) : MyEq a a
|
||
|
||
theorem foo : (x : MyNat) → (h : MyEq x x) → MyTrue := by
|
||
intro x h
|
||
exact MyTrue.mk
|
||
--^ goals:withGoToLoc
|