diff options
Diffstat (limited to 'bootstraptest')
-rw-r--r-- | bootstraptest/test_knownbug.rb | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/bootstraptest/test_knownbug.rb b/bootstraptest/test_knownbug.rb index 8ae5dc741..330e1249c 100644 --- a/bootstraptest/test_knownbug.rb +++ b/bootstraptest/test_knownbug.rb @@ -42,3 +42,18 @@ assert_normal_exit %q{ } }, '[ruby-dev:31985]' +assert_normal_exit %q{ +class C + def initialize(str) + @str = str + end + def _dump(limit) + @str + end + def C._load(s) + C.new(s) + end +end +Marshal.load("\004\bu:\006C\003\377\377\377a") +}, '[ruby-dev:32054]' + |