We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
type a = { x: int; } type b = { x: float; } let f (t: a) = t.x (* Here `x` *)
Type (merlin command) at x result int which is correct. Complete or locate at x shows x belongs b and type of x is float.
x
int
b
float
The text was updated successfully, but these errors were encountered:
Another issue here: Locate at x result a location of type a, not the x field. Is this a feature or a bug? ref: hackwaly/vscode-ocaml#50
a
Sorry, something went wrong.
No branches or pull requests
Type (merlin command) at
x
resultint
which is correct.Complete or locate at
x
showsx
belongsb
and type ofx
isfloat
.The text was updated successfully, but these errors were encountered: