The user can optionally name the equality proof. The new test demostrates how to name the equality proof. closes #501
5 lines
99 B
Text
5 lines
99 B
Text
def f : List Nat → List Nat :=
|
|
fun x =>
|
|
match x with
|
|
| a :: xs@h:(b :: bs) => xs
|
|
| x => []
|