555d26aa61
TODO: support foldl/foldr and binders
19 lines
709 B
Text
19 lines
709 B
Text
bug1.lean:9:7: error: type mismatch at definition 'and_intro', has type
|
|
∀ (p q : bool),
|
|
p → q → (∀ (c : bool), (p → q → c) → c)
|
|
but is expected to have type
|
|
∀ (p q : bool),
|
|
p → q → a
|
|
bug1.lean:13:7: error: type mismatch at definition 'and_intro', has type
|
|
∀ (p q : bool),
|
|
p → q → (∀ (c : bool), (p → q → c) → c)
|
|
but is expected to have type
|
|
∀ (p q : bool),
|
|
p → q → p ∧ p
|
|
bug1.lean:17:7: error: type mismatch at definition 'and_intro', has type
|
|
∀ (p q : bool),
|
|
p → q → (∀ (c : bool), (p → q → c) → c)
|
|
but is expected to have type
|
|
∀ (p q : bool),
|
|
p → q → q ∧ p
|
|
and_intro : ∀ (p q : bool), p → q → p ∧ q
|