You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
8 | type foo = [ | array ]
^^^^^
Error: The type array is not a variant type
Similar errors result if arr is renamed to anything defined in Ppx_deriving_runtime, e.g. list, int64, etc. Looking at the expanded output, the open! of that module is what dooms the match clause that names the poly variant (#arr here):
This works:
but this doesn't:
Similar errors result if
arr
is renamed to anything defined inPpx_deriving_runtime
, e.g.list
,int64
, etc. Looking at the expanded output, theopen!
of that module is what dooms the match clause that names the poly variant (#arr
here):(This might be related to #254, and thus #260?)
The text was updated successfully, but these errors were encountered: