Skip to content
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

Fix for Mantis 6221. #40

Merged
1 commit merged into from
May 30, 2014
Merged

Fix for Mantis 6221. #40

1 commit merged into from
May 30, 2014

Commits on May 30, 2014

  1. Fix for Mantis 6221.

    http://caml.inria.fr/mantis/view.php?id=6221
    
    Test case:
    
        $ cat field.ml
        <:ctyp< a:b >>
    
    Before:
    
        $ camlp4of field.ml
        File "field.ml", line 1, characters 10-11:
        While expanding quotation "ctyp" in a position of "str_item":
          Parse error: "->" expected after [ctyp level star] (in [ctyp])
    
    After:
    
        $ camlp4of field.ml
        Ast.TyCol (_loc, (Ast.TyId (_loc, (Ast.IdLid (_loc, "a")))),
          (Ast.TyId (_loc, (Ast.IdLid (_loc, "b")))))
    yallop committed May 30, 2014
    Configuration menu
    Copy the full SHA
    f9899db View commit details
    Browse the repository at this point in the history