From: eregontp@... Date: 2019-11-27T16:57:10+00:00 Subject: [ruby-core:95995] [Ruby master Feature#16378] Support leading arguments together with ... Issue #16378 has been updated by Eregon (Benoit Daloze). Also I believe `...` could be a good way to do delegation in all versions for lexical cases (the majority): ```ruby # Could be some constant in a gem ARGS = RUBY_VERSION < "2.7" ? "*args, &block" : "..." class_eval <