-
Notifications
You must be signed in to change notification settings - Fork 3.4k
make test
failed
#2
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
Comments
Oops, as mentioned in Erlang Forum, I think it might be a bug of Erlang R13. I will try Erlang R14B later. |
OK, Erlang R14B works. It's really a bug of Erlang R13. I think the minimum requirement is Erlang R14A, and It's nice to be documented in README. |
Updated README, Issue closed |
Closed
josevalim
added a commit
that referenced
this issue
Jul 2, 2024
Rule #1: Enum.reverse([1, 2, 3]) ++ [4, 5, 6] is equivalent but slower than Enum.reverse([1, 2, 3], [4, 5, 6]) Rule #2: Enum.reverse([1, 2, 3] ++ [4, 5, 6]) is equivalent but slower than: Enum.reverse([4, 5, 6], Enum.reverse([1, 2, 3])) Rule #3 Enum.reverse(Enum.reverse([1, 2, 3])) is the same as: [1, 2, 3]
wingyplus
added a commit
to wingyplus/elixir
that referenced
this issue
Sep 26, 2024
Signed-off-by: Thanabodee Charoenpiriyakij <[email protected]>
This issue was closed.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I found that unit test failed since de49179.
The error message is:
510a79a is the last good commit.
The text was updated successfully, but these errors were encountered: