14 lines
314 B
Text
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
|