summaryrefslogtreecommitdiff
path: root/spec/ruby/language/fixtures/match_operators.rb
blob: f04c54d723054faa5dc83884a842c01d5931cf87 (plain)
1
2
3
4
5
6
7
8
9
class OperatorImplementor
  def =~(val)
    return val
  end

  def !~(val)
    return val
  end
end