lean2/tests/lean/implicit2.lean.expected.out
Leonardo de Moura 78ec4b152b feat(frontends/lean): relax restricitions on parsing applications of functions containing implicit arguments
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
2013-12-10 09:48:24 -08:00

12 lines
405 B
Text
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

Set: pp::colors
Set: pp::unicode
Assumed: f
f 10 20 :
f 10 :
f::explicit : Π (A : Type), A → A → A
Assumed: g
g 10 20 : Bool → Bool
let r : := g 10 20 in r :
Error (line: 10, pos: 0) invalid expression, unexpected token
Set: lean::pp::implicit
let r : := g::explicit 10 20 in r :