a4b3d6d6c8
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
6 lines
197 B
Text
6 lines
197 B
Text
import Int.
|
|
axiom PlusComm(a b : Int) : a + b == b + a.
|
|
variable a : Int.
|
|
check (funext (fun x : Int, (PlusComm a x))).
|
|
set::option pp::implicit true.
|
|
check (funext (fun x : Int, (PlusComm a x))).
|