9 lines
197 B
Text
9 lines
197 B
Text
#check {x : nat | x > 0}
|
||
#check {x | x > 0}
|
||
#check {p : nat × nat | p.1 > p.2 }
|
||
|
||
set_option pp.binder_types false
|
||
|
||
#check {x : nat | x > 0}
|
||
#check {x | x > 0}
|
||
#check {p : nat × nat | p.1 > p.2 }
|