lean2/tests/lean/pp_param_bug.lean
Leonardo de Moura a526cd92ac fix(frontends/lean): bug in pretty printer
this is related to issue #530
2015-04-22 12:44:08 -07:00

7 lines
101 B
Text

section
parameters (A : Type) {B : Type}
definition foo3 (a : A) (b : B) := a
check foo3
end