lean4-htt/tests/lean/220.lean
2020-11-24 10:18:02 -08:00

5 lines
88 B
Text

def f : List Nat → List Nat
| a::xs@(b::bs) => xs
| _ => []
#print f