lean2/tests/lean/bug1.lean.expected.out
Leonardo de Moura 2486c483cf chore(kernel/error_msgs): change type mismatch error messages, closes #33
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
2014-08-07 16:18:40 -07:00

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 → and 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 → and q p
and_intro : ∀ (p q : bool), p → q → and p q