From: "marcandre (Marc-Andre Lafortune)" Date: 2013-05-18T06:11:40+09:00 Subject: [ruby-core:55034] [ruby-trunk - Bug #8416] super does not forward either named or anonymous ** Issue #8416 has been updated by marcandre (Marc-Andre Lafortune). Category set to core Assignee set to nobu (Nobuyoshi Nakada) Priority changed from Normal to High ---------------------------------------- Bug #8416: super does not forward either named or anonymous ** https://bugs.ruby-lang.org/issues/8416#change-39387 Author: rits (First Last) Status: Open Priority: High Assignee: nobu (Nobuyoshi Nakada) Category: core Target version: ruby -v: ruby 2.0.0p195 (2013-05-14 revision 40734) [i686-linux] Backport: 1.9.3: UNKNOWN, 2.0.0: UNKNOWN irb(main):015:0> class Super; def self.foo(**h); h; end; end; class Sub < Super; def self.foo(**); super; end; end; Sub.foo(a: 1) => {} -- http://bugs.ruby-lang.org/