# File lib/mspec/guards/conflict.rb, line 4
4:   def match?
5:     # Always convert constants to symbols regardless of version.
6:     constants = Object.constants.map { |x| x.to_sym }
7:     @args.any? { |mod| constants.include? mod }
8:   end