Skip to content

Commit

Permalink
Add TODO
Browse files Browse the repository at this point in the history
  • Loading branch information
sharkdp committed Jul 5, 2024
1 parent 6d56b73 commit 95e979f
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions numbat/tests/interpreter.rs
Original file line number Diff line number Diff line change
Expand Up @@ -809,4 +809,7 @@ fn test_statement_pretty_printing() {

expect_pretty_print("fn f(x: Length) = 2 x", "fn f(x: Length) -> Length = 2 x");
expect_pretty_print("fn f(x) -> Length = 2 x", "fn f(x: Length) -> Length = 2 x");

// TODO:
// expect_pretty_print("fn f<Z>(z: Z) = z", "fn f<Z>(z: Z) -> Z = z");
}

0 comments on commit 95e979f

Please sign in to comment.