[ruby-core:76680] [Ruby trunk Bug#12594] The class does not inherit from a module the modules that were included after the inclusion
From:
faucct@...
Date:
2016-08-03 10:36:41 UTC
List:
ruby-core #76680
Issue #12594 has been updated by Nikita Sokolov. Description updated ---------------------------------------- Bug #12594: The class does not inherit from a module the modules that were included after the inclusion https://bugs.ruby-lang.org/issues/12594#change-59897 * Author: Nikita Sokolov * Status: Open * Priority: Normal * Assignee: * ruby -v: 2.3.0, 2.3.1 * Backport: 2.1: UNKNOWN, 2.2: UNKNOWN, 2.3: UNKNOWN ---------------------------------------- Reproduced in ruby 2.3.0 and 2.3.1 You can see that the result changes if I swap places `LimitedPeriod.include Period` and `Period.include Serialization`. ~~~ ruby module Serialization end module Period end Period.include Serialization class LimitedPeriod include Period end LimitedPeriod < Serialization # => true ~~~ ~~~ ruby module Serialization end module Period end class LimitedPeriod include Period end Period.include Serialization LimitedPeriod < Serialization # => false ~~~ -- https://bugs.ruby-lang.org/ Unsubscribe: <mailto:ruby-core-request@ruby-lang.org?subject=unsubscribe> <http://lists.ruby-lang.org/cgi-bin/mailman/options/ruby-core>