Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ TODO.
* [Kernel] Now verify the type of the binary generators
* [Kernel] Track the type of tuples in patterns and inside `elem/2`
* [List] Add `List.ends_with?/2`
* [Macro] Improve `dbg` handling of `if/2` and of code blocks
* [Macro] Improve `dbg` handling of `if/2`, `with/1` and of code blocks
* [Process] Handle arbitrarily high integer values in `Process.sleep/1`
* [String] Inspect special whitespace and zero-width characters using their Unicode representation

Expand Down
2 changes: 1 addition & 1 deletion lib/elixir/lib/macro.ex
Original file line number Diff line number Diff line change
Expand Up @@ -2731,7 +2731,7 @@ defmodule Macro do
end)

error_clause =
quote do
quote generated: true do
{other, _acc} -> raise WithClauseError, term: other
end

Expand Down
Loading