Skip to content

Commit 25f063e

Browse files
committed
Do not crash on nested bitstrings
1 parent 2e3b812 commit 25f063e

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

lib/elixir/lib/module/types/pattern.ex

+4
Original file line numberDiff line numberDiff line change
@@ -377,6 +377,10 @@ defmodule Module.Types.Pattern do
377377
{type, context}
378378
end
379379

380+
def of_match_var({:<<>>, _meta, args}, _expected, _expr, stack, context) do
381+
{binary(), Of.binary(args, :match, stack, context)}
382+
end
383+
380384
def of_match_var(ast, expected, expr, stack, context) do
381385
of_guard(ast, expected, expr, stack, context)
382386
end

lib/elixir/test/elixir/module/types/pattern_test.exs

+4
Original file line numberDiff line numberDiff line change
@@ -260,6 +260,10 @@ defmodule Module.Types.PatternTest do
260260
assert typecheck!([<<x::utf8>>], x) == integer()
261261
end
262262

263+
test "nested" do
264+
assert typecheck!([<<0, <<x::bitstring>>::binary>>], x) == binary()
265+
end
266+
263267
test "error" do
264268
assert typeerror!([<<x::binary-size(2), x::float>>], x) == ~l"""
265269
incompatible types assigned to "x":

0 commit comments

Comments
 (0)