lean4-htt/tests/lean/run/unify_fo_approx_bug1.lean
Leonardo de Moura 8993d0738a feat(frontends/lean): remove #elab command
The check command is now using the new elaborator.
2016-08-02 15:05:24 -07:00

11 lines
340 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.

check ( return (1, 1) : list (nat × nat) )
constant A : Type
constant B : Type
set_option pp.binder_types true
set_option pp.universes true
check λ (A : Type) (B : Type) (a : A) (b : B), (return (a, b) : list (A × B))
check λ (A : Type) (B : Type) (C : Type) (a : A) (b : B) (c : C), (return (a, b, a, c) : list (A × B × A × C))