From: ruby-core@... Date: 2015-02-05T19:58:54+00:00 Subject: [ruby-core:68031] [ruby-trunk - Bug #10831] [Open] Variable keyword arguments shouldn't create immortal symbols Issue #10831 has been reported by Marc-Andre Lafortune. ---------------------------------------- Bug #10831: Variable keyword arguments shouldn't create immortal symbols https://bugs.ruby-lang.org/issues/10831 * Author: Marc-Andre Lafortune * Status: Open * Priority: Normal * Assignee: Nobuyoshi Nakada * ruby -v: r49512 * Backport: 2.0.0: DONTNEED, 2.1: DONTNEED, 2.2: REQUIRED ---------------------------------------- Calling a method with keyword arguments will, sometimes, create immortal symbols. The following tests should not fail: def test_kwarg_symbol_leak_no_rest foo = -> (arg: 42) {} assert_no_immortal_symbol_created("kwarg no rest") do |name| assert_raise(ArgumentError) { foo.call(name.to_sym => 42) } end end def test_kwarg_symbol_leak_with_rest foo = -> (arg: 2, **options) {} assert_no_immortal_symbol_created("kwarg with rest") do |name| foo.call(name.to_sym => 42) end end def test_kwarg_symbol_leak_just_rest foo = -> (**options) {} assert_no_immortal_symbol_created("kwarg just rest") do |name| foo.call(name.to_sym => 42) end end Note: the last one succeeds (because the hash is simply cloned internally), and is there for completeness. -- https://bugs.ruby-lang.org/