lean2/tests/lean/implicit2.lean
Leonardo de Moura dd72269b13 feat(frontends/lean): rename command Set to SetOption
It is not nice to have Set as a reserved keyword. See example examples/lean/set.lean

Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
2013-12-18 21:18:48 -08:00

12 lines
312 B
Text

Variable f {A : Type} (x y : A) : A
Check f 10 20
Check f 10
Check f::explicit
Variable g {A : Type} (x1 x2 : A) {B : Type} (y1 y2 : B) : B
Check g 10 20 true
Check let r : Real -> Real -> Real := g 10 20
in r
Check g 10
SetOption pp::implicit true
Check let r : Real -> Real -> Real := g 10 20
in r