File: polyrecord.ml

package info (click to toggle)
ocaml-deriving-ocsigen 0.6.2-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 628 kB
  • ctags: 1,159
  • sloc: ml: 6,334; makefile: 63; sh: 18
file content (8 lines) | stat: -rw-r--r-- 242 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
(* Polymorphic variant definitions within polymorphic record field
   types *)
type r = {
  (* I think this could be supported without too much difficulty, but
     it doesn't have much benefit *)
  x : 'a. [`Foo of 'a] 
    
} deriving (Eq)