summaryrefslogtreecommitdiff
path: root/yarvtest
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-01-06 04:48:11 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-01-06 04:48:11 +0000
commitad4213d6feaa3f8c79b4c3de6753b11ae2d46a84 (patch)
tree018871defd2476abc09fe3008fa1f523b6fed384 /yarvtest
parent52296cdee134593ec3a18c3420c7c6b7251c24f9 (diff)
* insns.def (send) : fix to optimize send() with Symbol.
* yarvtest/test_method.rb : add another test. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11495 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'yarvtest')
-rw-r--r--yarvtest/test_method.rb8
1 files changed, 8 insertions, 0 deletions
diff --git a/yarvtest/test_method.rb b/yarvtest/test_method.rb
index 60e7a9dd4e..249211c2e4 100644
--- a/yarvtest/test_method.rb
+++ b/yarvtest/test_method.rb
@@ -553,6 +553,14 @@ class TestMethod < YarvTestBase
obj.send(:m, :x){}
$r
}
+ ae %q{
+ class C
+ def send
+ :ok
+ end
+ end
+ C.new.send
+ }
end
def test_send_with_private