-
Notifications
You must be signed in to change notification settings - Fork 89
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Using show {with_path = false} results is error #149
Comments
I am unable to reproduce it under |
I am using ocaml 4.05.0, jbuilder 1.0+beta13, and ppx_deriving 4.2 |
@gasche I tried the following, |
It's probably this issue with |
@copy Indeed, this issue seems related to |
The fixed version of |
I am attempting to use
show {with_path = false}
however, the compiler complains with the following error:Error: non-optional labeled argument expected
The following sample code fails in both toplevel and ocamlc.
module X = struct type t = C [@@deriving show { with_path = false }] end;;
The text was updated successfully, but these errors were encountered: