Skip to content

Commit

Permalink
Add commented out test for constructor with a type variable
Browse files Browse the repository at this point in the history
  • Loading branch information
7h3kk1d committed Nov 4, 2024
1 parent ac4e9f9 commit c5861cd
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions test/Test_Menhir.re
Original file line number Diff line number Diff line change
Expand Up @@ -273,6 +273,11 @@ let tests = [
Constructor("A", Int |> Typ.fresh) |> Exp.fresh,
"A ~ Int",
),
// menhir_only_test(
// "Constructor with Type Variable",
// Constructor("A", Var("T") |> Typ.fresh) |> Exp.fresh,
// "A ~ T",
// ),
parser_test(
"Type Alias",
TyAlias(Var("x") |> TPat.fresh, Int |> Typ.fresh, Int(1) |> Exp.fresh)
Expand Down

0 comments on commit c5861cd

Please sign in to comment.