lean4-htt/old_tests/tests/lean/print_reducible.lean
2018-04-10 12:56:55 -07:00

19 lines
448 B
Text

prelude
attribute [reducible]
definition id₁ {A : Type} (a : A) := a
attribute [reducible]
definition id₂ {A : Type} (a : A) := a
attribute [irreducible]
definition id₅ {A : Type} (a : A) := a
attribute [irreducible]
definition id₆ {A : Type} (a : A) := a
attribute [reducible]
definition pr {A B : Type} (a : A) (b : B) := a
definition pr2 {A B : Type} (a : A) (b : B) := a
#print [reducible]
#print "-----------"
#print [irreducible]