Fix test error on Cygwin
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
parent
d912c9cd09
commit
4c67721d32
3 changed files with 4 additions and 4 deletions
|
@ -1204,7 +1204,7 @@ class parser::imp {
|
||||||
formatter fmt = m_frontend.get_state().get_formatter();
|
formatter fmt = m_frontend.get_state().get_formatter();
|
||||||
options opts = m_frontend.get_state().get_options();
|
options opts = m_frontend.get_state().get_options();
|
||||||
unsigned indent = get_pp_indent(opts);
|
unsigned indent = get_pp_indent(opts);
|
||||||
format r = group(format{fmt(v), space(), colon(), nest(indent, compose(line(), fmt(t)))});
|
format r = group(format{fmt(v, opts), space(), colon(), nest(indent, compose(line(), fmt(t, opts)))});
|
||||||
regular(m_frontend) << mk_pair(r, opts) << endl;
|
regular(m_frontend) << mk_pair(r, opts) << endl;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -22,8 +22,8 @@ g b (t2r a)
|
||||||
Set: lean::pp::notation
|
Set: lean::pp::notation
|
||||||
g (g a b) a
|
g (g a b) a
|
||||||
h (h r s) r
|
h (h r s) r
|
||||||
a ++ b ++ a : R
|
g (g a b) a : R
|
||||||
r ++ s ++ r : S
|
h (h r s) r : S
|
||||||
Set: lean::pp::coercion
|
Set: lean::pp::coercion
|
||||||
g (g (t2r a) b) (t2r a)
|
g (g (t2r a) b) (t2r a)
|
||||||
h (h r s) r
|
h (h r s) r
|
||||||
|
|
|
@ -9,7 +9,7 @@ f::explicit N n1 n2
|
||||||
f::explicit ((N → N) → N → N) (λ x : N → N, x) (λ y : N → N, y)
|
f::explicit ((N → N) → N → N) (λ x : N → N, x) (λ y : N → N, y)
|
||||||
Assumed: EqNice
|
Assumed: EqNice
|
||||||
EqNice::explicit N n1 n2
|
EqNice::explicit N n1 n2
|
||||||
f n1 n2 : N
|
f::explicit N n1 n2 : N
|
||||||
Congr::explicit :
|
Congr::explicit :
|
||||||
Π (A : Type U) (B : A → Type U) (f g : Π x : A, B x) (a b : A), (f = g) → (a = b) → ((f a) = (g b))
|
Π (A : Type U) (B : A → Type U) (f g : Π x : A, B x) (a b : A), (f = g) → (a = b) → ((f a) = (g b))
|
||||||
f::explicit N n1 n2
|
f::explicit N n1 n2
|
||||||
|
|
Loading…
Reference in a new issue