df58eb132e
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
12 lines
303 B
Text
12 lines
303 B
Text
Variable f {A : Type} (x y : A) : A
|
|
Check f 10 20
|
|
Check f 10
|
|
Check @f
|
|
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
|