Suppress void context warning in verbose mode

This commit is contained in:
Nobuyoshi Nakada 2019-06-28 12:33:24 +09:00
parent dc7da30bed
commit 3120252f01
No known key found for this signature in database
GPG Key ID: 4BC7D6DF58D8DF60

View File

@ -304,7 +304,7 @@ p Foo::Bar
begin
thrs = []
3.times do
thrs << Thread.new { AutoloadTest; nil }
thrs << Thread.new { AutoloadTest && nil }
thrs << Thread.new { fork { AutoloadTest } }
end
thrs.each(&:join)