summaryrefslogtreecommitdiffstats
path: root/bootstraptest
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-01-31 00:38:38 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-01-31 00:38:38 +0000
commitacbb60994b817f6cbd465e5c231500aa12bf2a84 (patch)
treed6a819f0913d58b23e7ab57e9c081423ee0367eb /bootstraptest
parent7b13e10b92d7b5aaeecf9320754dde712c1387c6 (diff)
downloadruby-acbb60994b817f6cbd465e5c231500aa12bf2a84.tar.gz
ruby-acbb60994b817f6cbd465e5c231500aa12bf2a84.tar.xz
ruby-acbb60994b817f6cbd465e5c231500aa12bf2a84.zip
test updated for empty symbols
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@15354 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'bootstraptest')
-rw-r--r--bootstraptest/test_syntax.rb1
1 files changed, 0 insertions, 1 deletions
diff --git a/bootstraptest/test_syntax.rb b/bootstraptest/test_syntax.rb
index 8af335965..c64bd5ad9 100644
--- a/bootstraptest/test_syntax.rb
+++ b/bootstraptest/test_syntax.rb
@@ -530,7 +530,6 @@ end
assert_syntax_error "unterminated string meets end of file", '().."', '[ruby-dev:29732]'
assert_equal %q{[]}, %q{$&;[]}, '[ruby-dev:31068]'
assert_syntax_error "syntax error, unexpected tSTAR, expecting '}'", %q{{*0}}, '[ruby-dev:31072]'
-assert_syntax_error "empty symbol literal", %q{0..:""}, '[ruby-dev:31085]'
assert_syntax_error "`@0' is not allowed as an instance variable name", %q{@0..0}, '[ruby-dev:31095]'
assert_syntax_error "identifier $00 is not valid to get", %q{$00..0}, '[ruby-dev:31100]'
assert_syntax_error "identifier $00 is not valid to set", %q{0..$00=1}