summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/ruby/test_rubyvm.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/ruby/test_rubyvm.rb b/test/ruby/test_rubyvm.rb
index a6d0b1a727..7d4588a165 100644
--- a/test/ruby/test_rubyvm.rb
+++ b/test/ruby/test_rubyvm.rb
@@ -18,12 +18,12 @@ class TestRubyVM < Test::Unit::TestCase
def parse_and_compile
script = <<~RUBY
- a = 1
+ _a = 1
def foo
- b = 2
+ _b = 2
end
1.times{
- c = 3
+ _c = 3
}
RUBY