Skip to content

Commit

Permalink
Add splat restriction arguments back to matched args list (#10172)
Browse files Browse the repository at this point in the history
  • Loading branch information
HertzDevil authored Jan 6, 2021
1 parent 5fde64b commit a721aa8
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
10 changes: 10 additions & 0 deletions spec/compiler/semantic/splat_spec.cr
Original file line number Diff line number Diff line change
Expand Up @@ -405,6 +405,16 @@ describe "Semantic: splat" do
)) { tuple_of([] of Type).metaclass }
end

it "uses splat restriction after non-splat arguments (#5037)" do
assert_type(%(
def foo(x, *y : *T) forall T
T
end
foo 1, 'a', ""
)) { tuple_of([char, string]).metaclass }
end

it "uses splat restriction with concrete type" do
assert_error %(
struct Tuple(T)
Expand Down
3 changes: 3 additions & 0 deletions src/compiler/crystal/semantic/method_lookup.cr
Original file line number Diff line number Diff line change
Expand Up @@ -262,6 +262,9 @@ module Crystal
unless match_arg_type
return nil
end

matched_arg_types ||= [] of Type
matched_arg_types.concat(splat_arg_types)
end

found_unmatched_named_arg = false
Expand Down

0 comments on commit a721aa8

Please sign in to comment.