mirror of
https://github.com/ruby/ruby.git
synced 2025-08-15 13:39:04 +02:00
Fixes the following: ```ruby Thread.new { Fiber.current.kill }.join ```
This commit is contained in:
parent
86eb5f9c05
commit
54ef6c312a
Notes:
git
2025-06-06 00:31:58 +00:00
Merged-By: ioquatix <samuel@codeotaku.com>
2 changed files with 9 additions and 0 deletions
|
@ -37,3 +37,8 @@ assert_normal_exit %q{
|
|||
assert_normal_exit %q{
|
||||
Fiber.new(&Object.method(:class_eval)).resume("foo")
|
||||
}, '[ruby-dev:34128]'
|
||||
|
||||
# [Bug #21400]
|
||||
assert_normal_exit %q{
|
||||
Thread.new { Fiber.current.kill }.join
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue