chore: fix test

This commit is contained in:
Leonardo de Moura 2022-04-13 08:37:34 -07:00
parent 1f4039a25d
commit 3e0a975e9c

View file

@ -1,7 +1,7 @@
example : x ≠ y → x ∉ [y] :=
fun hne hin =>
match hin with
| .head _ => hne rfl
| .head _ _ => hne rfl
example : x ≠ y → x ∉ [y] :=
fun hne (.head _) => hne rfl
fun hne (.head _ _) => hne rfl