lean4-htt/tests/lean/safeShadowing.lean.expected.out
2021-08-03 09:13:18 +02:00

15 lines
407 B
Text
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

fun a => a : αα
fun {α} a => a : {α : Sort u_1} → αα
fun x x => x : Nat → Nat → Nat
def f : Nat → Nat → Nat :=
fun x x =>
match x with
| 0 => x + 1
| Nat.succ x_1 => x + 2
fun {α_1} a => a : {α_1 : Sort u_1} → α_1 → α_1
fun x x_1 => x_1 : Nat → Nat → Nat
def f : Nat → Nat → Nat :=
fun x x_1 =>
match x_1 with
| 0 => x_1 + 1
| Nat.succ x_2 => x_1 + 2