* transcode.c (trans_open_i): check the result of rb_transcoding_open.
[ruby-svn.git] / benchmark / bm_vm2_send.rb
blobc20dbdd26cb10afd5374c9d7dce7e4690ea3006c
1 class C
2   def m
3   end
4 end
6 o = C.new
8 i=0
9 while i<6000000 # benchmark loop 2
10   i+=1
11   o.__send__ :m
12 end