:: int -> int -> int -> int package:leancheck

Returns an undefined functional value that takes an argument of the type of its first argument and return a value of the type of its second argument.
ty >- ty  =  (undefined :: Ty -> Ty)
Examples:
'a' >- 'b'  =  char >- char  =  (undefined :: Char -> Char)
int >- bool >- int  =  undefined :: Int -> Bool -> Int