lean4-htt/tests/lean/interactive/hoverBinderUndescore.lean
2022-07-29 14:53:02 -07:00

14 lines
314 B
Text

def f : Nat → Bool → Nat :=
fun _ _ => 5
--^ textDocument/hover
--^ textDocument/hover
def g : Nat → Bool → Nat :=
fun (_ _) => 5
--^ textDocument/hover
--^ textDocument/hover
def h : Nat → Bool → Nat :=
fun (_ _ : _) => 5
--^ textDocument/hover
--^ textDocument/hover