5 lines
68 B
OCaml
5 lines
68 B
OCaml
|
type t1 = ();;
|
||
|
type t2 = unit;;
|
||
|
let x : t1 = ();;
|
||
|
let y : t2 = ();;
|