Fix keyword argument separation issues in Thread.new

This commit is contained in:
Jeremy Evans 2019-09-25 17:14:17 -07:00
parent 47d44510a3
commit 6b52959ef7
Notes: git 2019-09-27 00:02:32 +09:00
3 changed files with 91 additions and 3 deletions

View file

@ -951,6 +951,7 @@ typedef struct rb_thread_struct {
struct {
VALUE proc;
VALUE args;
int kw_splat;
} proc;
struct {
VALUE (*func)(void *);