From: tobias+ruby-lang-bugs@...2a.de Date: 2015-01-04T15:40:36+00:00 Subject: [ruby-core:67328] [ruby-trunk - Bug #10695] [Open] Segmentation fault with *args and **kwargs Issue #10695 has been reported by Tobias B��hlmann. ---------------------------------------- Bug #10695: Segmentation fault with *args and **kwargs https://bugs.ruby-lang.org/issues/10695 * Author: Tobias B��hlmann * Status: Open * Priority: Normal * Assignee: Yukihiro Matsumoto * Category: syntax * Target version: * ruby -v: ruby 2.2.0p0 (2014-12-25 revision 49005) [x86_64-linux] * Backport: 2.0.0: UNKNOWN, 2.1: UNKNOWN, 2.2: UNKNOWN ---------------------------------------- The following will raise a Segmentation fault: ~~~ruby def foo(*args, **kwargs) puts "args: #{args}" puts "kwargs: #{kwargs}" end foo('foo' => 'bar') ~~~ Segmentation fault in [here](https://gist.github.com/tbuehlmann/5f0eeaae4f666bd486a8). -- https://bugs.ruby-lang.org/