summaryrefslogtreecommitdiff
path: root/spec/ruby/core/basicobject/fixtures/remove_method_missing.rb
blob: 095b982d3a66145fd2dadf24522e710b0c5ea809 (plain)
1
2
3
4
5
6
7
8
9
class BasicObject
  remove_method :method_missing
end

begin
  Object.new.test_method
rescue NoMethodError => e
  puts e.class.name
end