lean2/tests/lean/bug1.lean.expected.out

20 lines
673 B
Text
Raw Normal View History

bug1.lean:9:7: error: type mismatch at definition 'and_intro', expected type
∀ (p q : bool),
p → q → a
given type:
∀ (p q : bool),
p → q → (∀ (c : bool), (p → q → c) → c)
bug1.lean:13:7: error: type mismatch at definition 'and_intro', expected type
∀ (p q : bool),
p → q → and p p
given type:
∀ (p q : bool),
p → q → (∀ (c : bool), (p → q → c) → c)
bug1.lean:17:7: error: type mismatch at definition 'and_intro', expected type
∀ (p q : bool),
p → q → and q p
given type:
∀ (p q : bool),
p → q → (∀ (c : bool), (p → q → c) → c)
and_intro : ∀ (p q : bool), p → q → and p q