in reply to Segmentation fault with threads and binmode utf-8
As a work around, using the open pragma doesn't cause the crash:
#! perl -slw use strict; use threads; use open OUT => ':utf8'; #use open ':encoding(utf8)'; print async{ "\x120\x121\x122\x123\n" }->join;
|
|---|