Skip to content

Commit

Permalink
Commented out type incorrect asserts
Browse files Browse the repository at this point in the history
  • Loading branch information
PaulKlint committed Apr 4, 2024
1 parent 10ed44b commit 259670c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -303,11 +303,11 @@ test bool selfApplyCurry() {
func = curry(curry, addition);
assert int(int)(int) _ := func;
//assert int(int)(int) _ := func;
func2 = func(1);
assert int(int) _ := func2;
//assert int(int) _ := func2;
return func2(1) == 2;
}
Expand Down

0 comments on commit 259670c

Please sign in to comment.