summaryrefslogtreecommitdiff
path: root/test/rdoc
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-08-11 02:53:31 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-08-11 02:53:31 +0000
commitd311b7d0eb1e973c8d143f03e66ab72588f57a2a (patch)
treeff1cdd19d8da49467ed8319d3c7996fa6b61e7a6 /test/rdoc
parent8322c36a9bb55a50faf03ffaf23e0ebf08f71e30 (diff)
parse.y: optional superclass
* parse.y (superclass): make superclass rule optional and allow any contents without a terminator. [EXPERIMENTAL] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51529 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/rdoc')
-rw-r--r--test/rdoc/test_rdoc_markup_to_html.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/rdoc/test_rdoc_markup_to_html.rb b/test/rdoc/test_rdoc_markup_to_html.rb
index 1e4b84fe9e..dbbd287188 100644
--- a/test/rdoc/test_rdoc_markup_to_html.rb
+++ b/test/rdoc/test_rdoc_markup_to_html.rb
@@ -619,6 +619,7 @@ class TestRDocMarkupToHtml < RDoc::Markup::FormatterTestCase
'def x() end',
'def x; end',
'class C; end',
+ 'class C end',
"module M end",
'a # => blah',
'x { |y| nil }',
@@ -629,7 +630,6 @@ class TestRDocMarkupToHtml < RDoc::Markup::FormatterTestCase
]
invalid_syntax = [
'def x end',
- 'class C end',
'class C < end',
'module M < C end',
'a=># blah',