lean4-htt/tests/lean/notation.lean.expected.out
Leonardo de Moura 90bfd84a07 feat(frontends/lean): Type is now (Type 1)
In the standard library, we should use explicit universe variables for
universe polymorphic definitions.

Users that want to declare universe polymorphic definitions but do not
want to provide universe level parameters should use
  Type _
or
  Type*
2016-09-17 14:30:54 -07:00

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

b + b + b : num
true ∧ false ∧ true : Prop
(true ∧ false) ∧ true : Prop
2 + (2 + 2) : num
2 + 2 + 2 : num
1 = (2 + 3) * 2 : Prop
2 + 3 * 2 = 3 * 2 + 2 : Prop
(true false) = (true false) ∧ true : Prop
true ∧ (false true) : Prop
1 : A
: Type