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