7 lines
129 B
Text
7 lines
129 B
Text
def prod.cmp (a b : nat × nat) : ordering :=
|
||
cmp a b
|
||
|
||
namespace prod
|
||
def foo (a : nat × nat) (cmp : nat) :=
|
||
a.cmp
|
||
end prod
|