# File lib/core/facets/module/conflict.rb, line 38
  def public_conflict?(other)
    common_ancestor = (ancestors & other.ancestors).first
    c = public_instance_methods(true) & other.public_instance_methods(true)
    c -= common_ancestor.public_instance_methods(true)
    c.empty? ? false : c
  end