lean4-htt/tests/lean/243.lean
Leonardo de Moura a5c28f7dfc fix: fixes #243
2021-05-03 13:01:16 -07:00

16 lines
200 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.

def f : (α : Type) × α → Nat
| ⟨Bool, true⟩ => 1
| _ => 2
namespace Foo
inductive A where
| a | b
open A (a b)
def g : (α : Type) × α → Nat
| ⟨A, a⟩ => 1
| _ => 2
end Foo