repo.or.cz
/
pkg-ocaml-deriving-ocsigen.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Initial packaging
[pkg-ocaml-deriving-ocsigen.git]
/
tests
/
rejected
/
polyrecord.ml
blob
b3c7e6909b6c7588fba76e40b18750bb3bc3d69b
1
(* Polymorphic variant definitions within polymorphic record field
2
types *)
3
type
r
= {
4
(* I think this could be supported without too much difficulty, but
5
it doesn't have much benefit *)
6
x
:
'a
. [
`Foo
of
'a
]
7
8
}
deriving
(
Eq
)