summaryrefslogtreecommitdiff
path: root/test/prism/fixtures/unparser/corpus/literal/since/32.txt
blob: b8e096d8fcbad49e6f6c255cdd2bdfb4973d9975 (plain)
1
2
3
4
5
6
7
8
9
10
11
def foo(argument, **)
  bar(argument, **)
end

def foo(argument, *)
  bar(argument, *)
end

def foo(**)
  { default: 1, ** }
end