lean4-htt/tests/lean/interactive/lean3HoverIssue.lean
2022-04-02 15:21:24 -07:00

12 lines
751 B
Text

example (x y : Nat) (h : x = y) : y = x := by exact h.symm
--^ textDocument/hover
--^ textDocument/hover
example (x y : Nat) (h : x = y) : y = x := h.symm
--^ textDocument/hover
example (x y : Nat) (h : x = y) : y = x := by exact (Eq.symm (Eq.symm h.symm))
--^ textDocument/hover
--^ textDocument/hover
--^ textDocument/hover
--^ textDocument/hover