module RSpec::Mocks::TargetDelegationClassMethods

def disallow_negation(method_name)

def disallow_negation(method_name)
  define_method(method_name) do |matcher, *_args|
    raise_negation_unsupported(method_name, matcher)
  end
end