mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
8 lines
192 B
Ruby
8 lines
192 B
Ruby
|
require 'test/unit'
|
||
|
|
||
|
class TestRegexp < Test::Unit::TestCase
|
||
|
def test_undefined_bytecode_bug
|
||
|
assert_nothing_raised("[ruby-dev:24643]") { /(?:(?:[a]*[a])?b)*a*$/ =~ "aabaaca" }
|
||
|
end
|
||
|
end
|