From: recursive.madman@... Date: 2014-11-17T15:41:20+00:00 Subject: [ruby-core:66333] [ruby-trunk - Bug #10485] NoMethodError "undefined method `initialize_copy'" when trying to execute Queue#dup Issue #10485 has been updated by Recursive Madman. > Not all methods in super classes always work on all subclasses. If a method that works on a superclass doesn't work on a subclass, I would expect the subclass to at least mark it as `private` and definitely not segfault. ---------------------------------------- Bug #10485: NoMethodError "undefined method `initialize_copy'" when trying to execute Queue#dup https://bugs.ruby-lang.org/issues/10485#change-49989 * Author: Jakub Jursa * Status: Feedback * Priority: Normal * Assignee: * Category: ext * Target version: current: 2.2.0 * ruby -v: ruby 2.2.0dev (2014-11-07 trunk 48313) [x86_64-linux] * Backport: 2.0.0: UNKNOWN, 2.1: UNKNOWN ---------------------------------------- Queue#dup raises NoMethodError (Queue#clone as well) ~~~ :001 > q = Queue.new => # :002 > q.dup NoMethodError: undefined method `initialize_copy' for # from (irb):2:in `initialize_dup' from (irb):2:in `dup' from (irb):2 from /home/bubo/.rvm/rubies/ruby-head/bin/irb:11:in `
' ~~~ -- https://bugs.ruby-lang.org/